Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion javascript/packages/orchestrator/src/orchestrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export async function start(

const monitorIsAvailable = await client.isPodMonitorAvailable();
let jaegerUrl: string;
if (client.providerName === "podman") {
if (client.providerName === "podman" && networkSpec.settings.enable_tracing) {
const jaegerIp = await client.getNodeIP("tempo");
jaegerUrl = `${jaegerIp}:6831`;
} else if (
Expand Down