Skip to content
Merged
Changes from all commits
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 svc/pkg/ds/worker/src/workers/nomad_monitor_alloc_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async fn worker(
ctx: &OperationContext<nomad::msg::monitor_alloc_plan::Message>,
) -> GlobalResult<()> {
let PlanResult { allocation: alloc } = serde_json::from_str::<PlanResult>(&ctx.payload_json)?;
tracing::info!(?alloc, "from noamddd");
tracing::info!(?alloc, "from nomad");

let job_id = unwrap_ref!(alloc.job_id, "alloc has no job id");
let alloc_id = unwrap_ref!(alloc.ID);
Expand Down