Skip to content

Commit

Permalink
don't log missing computation state as error (#32942)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-trieu authored Oct 28, 2024
1 parent 8cd3e54 commit be7537a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,10 @@ public Optional<ComputationState> get(String computationId) {
| ComputationStateNotFoundException e) {
if (e.getCause() instanceof ComputationStateNotFoundException
|| e instanceof ComputationStateNotFoundException) {
LOG.error(
"Trying to fetch unknown computation={}, known computations are {}.",
LOG.warn(
"Computation {} is currently unknown, "
+ "known computations are {}. "
+ "This is transient and will get retried.",
computationId,
ImmutableSet.copyOf(computationCache.asMap().keySet()));
} else {
Expand Down

0 comments on commit be7537a

Please sign in to comment.