Skip to content

Commit

Permalink
fix(exception-handling): [eclipse-tractusx#841] add bpn to timeout ex…
Browse files Browse the repository at this point in the history
…ception message
  • Loading branch information
dsmf committed Jul 30, 2024
1 parent 1e0cf3e commit c047ffb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ private Collection<String> lookupShellIds(final String bpn,
"%s occurred while looking up shell ids for bpn '%s'".formatted(e.getClass().getSimpleName(), bpn),
e);
} catch (TimeoutException e) {
throw new RegistryServiceException("Timeout during shell ID lookup", e);
throw new RegistryServiceException("Timeout during shell ID lookup for bpn '%s'".formatted(bpn), e);
}
}

Expand Down

0 comments on commit c047ffb

Please sign in to comment.