Skip to content

Commit

Permalink
Fix alloc resume message
Browse files Browse the repository at this point in the history
Currently resuming a paused alloc prints the same message as pausing it.
This is probably a remnant of some copy-and-pasting.

This commit fixes the message to properly show the word "resumed"
instead of "paused".
  • Loading branch information
StHagel committed Oct 30, 2024
1 parent c515aac commit f1721ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/hyperqueue/src/client/commands/autoalloc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ async fn resume_queue(mut session: ClientSession, opts: ResumeQueueOpts) -> anyh
)
.await?;

log::info!("Allocation queue {queue_id} successfully paused");
log::info!("Allocation queue {queue_id} successfully resumed");

Ok(())
}
Expand Down

0 comments on commit f1721ee

Please sign in to comment.