chore(execution-engine): Some stream-related LambdaError are unjoinab… (#503)

chore(execution-engine): Some stream-related LambdaError are unjoinable b/c: canon stream replaces normal stream, when canon stream  is used, it is materialized and its size is known
This commit is contained in:
raftedproc
2023-03-10 12:46:20 +03:00
committed by GitHub
parent 47a7a87925
commit cb9c426a35
5 changed files with 2 additions and 70 deletions

View File

@ -141,15 +141,6 @@ impl Joinable for CatchableError {
log_join!(" waiting for an argument with name '{}'", var_name);
true
}
LambdaApplierError(LambdaError::StreamNotHaveEnoughValues { stream_size, idx }) => {
log_join!(" waiting for an argument with idx '{}' on stream with size '{}'", idx, stream_size);
true
}
LambdaApplierError(LambdaError::EmptyStream) => {
log_join!(" waiting on empty stream for path ");
true
}
_ => false,
}
}