Skip to content

Commit

Permalink
blop
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton committed Jan 24, 2024
1 parent cd7ef54 commit a0cd9cd
Show file tree
Hide file tree
Showing 11 changed files with 168 additions and 101 deletions.
118 changes: 53 additions & 65 deletions quickwit/Cargo.lock

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

4 changes: 2 additions & 2 deletions quickwit/quickwit-actors/src/actor_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl<A: Actor> ActorContext<A> {
self.progress.record_progress();
}

pub(crate) fn state(&self) -> ActorState {
pub fn state(&self) -> ActorState {
self.actor_state.get_state()
}

Expand All @@ -199,7 +199,7 @@ impl<A: Actor> ActorContext<A> {
self.actor_state.idle();
}

pub(crate) fn pause(&self) {
pub fn pause(&self) {
self.actor_state.pause();
}

Expand Down
Loading

0 comments on commit a0cd9cd

Please sign in to comment.