Skip to content

Commit db1e8b1

Browse files
Update to track timely changes (#554)
1 parent 84cfc36 commit db1e8b1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/trace/implementations/merge_batcher.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
use std::collections::VecDeque;
44
use std::marker::PhantomData;
55

6-
use timely::logging::WorkerIdentifier;
76
use timely::logging_core::Logger;
87
use timely::progress::frontier::AntichainRef;
98
use timely::progress::{frontier::Antichain, Timestamp};
@@ -32,7 +31,7 @@ where
3231
/// Thing to accept data, merge chains, and talk to the builder.
3332
merger: M,
3433
/// Logger for size accounting.
35-
logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>,
34+
logger: Option<Logger<DifferentialEvent>>,
3635
/// Timely operator ID.
3736
operator_id: usize,
3837
/// Current lower frontier, we sealed up to here.
@@ -52,7 +51,7 @@ where
5251
type Time = M::Time;
5352
type Output = M::Chunk;
5453

55-
fn new(logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>, operator_id: usize) -> Self {
54+
fn new(logger: Option<Logger<DifferentialEvent>>, operator_id: usize) -> Self {
5655
Self {
5756
logger,
5857
operator_id,

src/trace/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ pub mod description;
1212
pub mod implementations;
1313
pub mod wrappers;
1414

15-
use timely::logging::WorkerIdentifier;
1615
use timely::logging_core::Logger;
1716
use timely::progress::{Antichain, frontier::AntichainRef};
1817
use timely::progress::Timestamp;
@@ -310,7 +309,7 @@ pub trait Batcher {
310309
/// Times at which batches are formed.
311310
type Time: Timestamp;
312311
/// Allocates a new empty batcher.
313-
fn new(logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>, operator_id: usize) -> Self;
312+
fn new(logger: Option<Logger<DifferentialEvent>>, operator_id: usize) -> Self;
314313
/// Adds an unordered container of elements to the batcher.
315314
fn push_container(&mut self, batch: &mut Self::Input);
316315
/// Returns all updates not greater or equal to an element of `upper`.

0 commit comments

Comments
 (0)