Skip to content

Commit

Permalink
update coordinator
Browse files Browse the repository at this point in the history
  • Loading branch information
diptanu committed Apr 28, 2024
1 parent f96fa99 commit 40781f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indexify"
version = "0.0.31"
version = "0.0.32"
edition = "2021"
authors = ["Diptanu Gon Choudhury <[email protected]>"]
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions src/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use internal_api::{
};
use jsonschema::JSONSchema;
use tokio::sync::{broadcast, watch::Receiver};
use tracing::info;
use tracing::{debug, info};

use crate::{
coordinator_client::CoordinatorClient,
Expand Down Expand Up @@ -446,7 +446,7 @@ impl Coordinator {

let state_changes = self.shared_state.unprocessed_state_change_events().await?;
for change in state_changes {
info!(
debug!(
"processing change event: {}, type: {}, id: {}",
change.id, change.change_type, change.object_id
);
Expand Down

0 comments on commit 40781f0

Please sign in to comment.