Summary
TaskType.NOOP exists in the SDK enum but there is no Noop builder class in
conductor-client/src/main/java/com/netflix/conductor/sdk/workflow/def/tasks/.
Users cannot create a NOOP workflow task using the fluent SDK API — they must fall
back to constructing a raw WorkflowTask manually.
Server baseline
Conductor 3.32.0-rc.9
Evidence
Static: TaskType.NOOP is in the enum; no Noop.java file exists under
conductor-client/…/def/tasks/.
Live (2026-07-16): A raw WorkflowTask with "type": "NOOP" was registered
and executed against Conductor OSS 3.32.0-rc.9 at http://loki.local:8080. The workflow
completed successfully, confirming the server supports NOOP — the gap is SDK-only.
Expected behaviour
Users should be able to write:
Proposed fix
public class Noop extends Task<Noop> {
public Noop(String taskReferenceName) {
super(taskReferenceName, TaskType.NOOP);
}
}
No updateWorkflowTask override required — NOOP has no inputParameters.
Related
Discovered during systematic SDK audit against Conductor OSS 3.32.0-rc.9 server.
Same gap exists in the Python SDK (conductor-oss/python-sdk#430).
Summary
TaskType.NOOPexists in the SDK enum but there is noNoopbuilder class inconductor-client/src/main/java/com/netflix/conductor/sdk/workflow/def/tasks/.Users cannot create a NOOP workflow task using the fluent SDK API — they must fall
back to constructing a raw
WorkflowTaskmanually.Server baseline
Conductor 3.32.0-rc.9
Evidence
Static:
TaskType.NOOPis in the enum; noNoop.javafile exists underconductor-client/…/def/tasks/.Live (2026-07-16): A raw
WorkflowTaskwith"type": "NOOP"was registeredand executed against Conductor OSS 3.32.0-rc.9 at
http://loki.local:8080. The workflowcompleted successfully, confirming the server supports NOOP — the gap is SDK-only.
Expected behaviour
Users should be able to write:
Proposed fix
No
updateWorkflowTaskoverride required — NOOP has noinputParameters.Related
Discovered during systematic SDK audit against Conductor OSS 3.32.0-rc.9 server.
Same gap exists in the Python SDK (conductor-oss/python-sdk#430).