Summary
The quickstart closing paragraph in the Python SDK README links to http://localhost:8127, but the Conductor server (whether started via Docker, the CLI, or any other method) serves its UI on port 8080 by default.
Location
README.md, line 164:
That's it — you just defined a worker, built a workflow, and executed it. Open the Conductor UI (default:
http://localhost:8127) to see the execution.
Correct port
http://localhost:8080 — confirmed by:
conductor server start output: "UI: http://localhost:8080"
docker run -p 8080:8080 conductoross/conductor:latest
Configuration().ui_host returns http://localhost:8080
- The quickstart code itself prints
config.ui_host/execution/... which produces http://localhost:8080/execution/...
The 8127 port does not appear in any server configuration and seems to be a copy-paste or typo error.
Fix location
conductor-oss/python-sdk — README.md, closing paragraph of the 60-Second Quickstart section
Summary
The quickstart closing paragraph in the Python SDK README links to
http://localhost:8127, but the Conductor server (whether started via Docker, the CLI, or any other method) serves its UI on port 8080 by default.Location
README.md, line 164:Correct port
http://localhost:8080— confirmed by:conductor server startoutput: "UI: http://localhost:8080"docker run -p 8080:8080 conductoross/conductor:latestConfiguration().ui_hostreturnshttp://localhost:8080config.ui_host/execution/...which produceshttp://localhost:8080/execution/...The 8127 port does not appear in any server configuration and seems to be a copy-paste or typo error.
Fix location
conductor-oss/python-sdk— README.md, closing paragraph of the 60-Second Quickstart section