Skip to content

Commit

Permalink
fix: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Oct 23, 2024
1 parent 0174cf4 commit b1730bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/hello-world-rabbitmq/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/hello-world-rabbitmq/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
environment:
- RUST_LOG=info
- AMQP_URI=amqp://rabbitmq:5672
- JOB_TIMEOUT=10
- JOB_TIMEOUT=30
worker:
build:
context: ../../
Expand Down
1 change: 1 addition & 0 deletions examples/hello-world-rabbitmq/ops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ edition = "2021"
[dependencies]
serde = "1.0.183"
anyhow = "1.0.90"
tracing = "0.1"

paladin-core = { path = "../../../paladin-core" }
2 changes: 1 addition & 1 deletion examples/hello-world-rabbitmq/ops/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::thread::sleep;

use paladin::__private::tracing::info;
use tracing::info;
use paladin::operation::{FatalStrategy, OperationError};
use paladin::{
operation::{Monoid, Operation, Result},
Expand Down

0 comments on commit b1730bc

Please sign in to comment.