Skip to content

Commit

Permalink
fix(execution-engine): ExecutionCtx fmt now prints stream maps out (#705
Browse files Browse the repository at this point in the history
)
  • Loading branch information
raftedproc authored Sep 26, 2023
1 parent 8013e5e commit c52a36c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions air/src/execution_step/execution_context/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ impl<'i> Display for ExecutionCtx<'i> {
writeln!(f, "streams:")?;
writeln!(f, " {}", self.streams)?;

writeln!(f, "stream_maps:")?;
writeln!(f, " {}", self.stream_maps)?;

writeln!(f, "current peer id: {}", self.run_parameters.current_peer_id)?;
writeln!(f, "init peer id: {}", self.run_parameters.init_peer_id)?;
writeln!(f, "timestamp: {}", self.run_parameters.timestamp)?;
Expand Down

0 comments on commit c52a36c

Please sign in to comment.