Severity
Blocking some customers
Version
Client version 20.13 or later with Server 2025.4 or earlier
Latest Version
I could reproduce the problem in the latest build
What happened?
A change to the task resource in Octopus Client always set the value of HasPendingInteruptions to false.
Reproduction
Using a 2026.1.419 or earlier server with a client version of 20.13.2583 or later.
View a task that has a pending interruption, such as a manual intervention.
The response over the API (as viewed through browser dev tools), will have the HasPendingInteruptions value set correct.
Fetching the same task by Id using the client: client.Tasks.Get("ServerTasks-123") will always have the HasPendingInteruptions set to false.
Error and Stacktrace
More Information
This is due to the client calculating the value for HasPendingInteruptions from the PendingInteruptionTypes collection property
public bool HasPendingInterruptions => PendingInterruptionTypes.Count > 0;
The PendingInteruptionTypes property is not returned by server versions 2026.1.419 and earlier, so this is collection in the TaskResource is always empty.
Workaround
Use an earlier version of the client library.
Severity
Blocking some customers
Version
Client version 20.13 or later with Server 2025.4 or earlier
Latest Version
I could reproduce the problem in the latest build
What happened?
A change to the task resource in Octopus Client always set the value of
HasPendingInteruptionsto false.Reproduction
Using a 2026.1.419 or earlier server with a client version of 20.13.2583 or later.
View a task that has a pending interruption, such as a manual intervention.
The response over the API (as viewed through browser dev tools), will have the
HasPendingInteruptionsvalue set correct.Fetching the same task by Id using the client:
client.Tasks.Get("ServerTasks-123")will always have theHasPendingInteruptionsset to false.Error and Stacktrace
More Information
This is due to the client calculating the value for
HasPendingInteruptionsfrom thePendingInteruptionTypescollection propertyThe
PendingInteruptionTypesproperty is not returned by server versions 2026.1.419 and earlier, so this is collection in theTaskResourceis always empty.Workaround
Use an earlier version of the client library.