Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo-catalano committed Jan 11, 2024
1 parent 44a4b75 commit 01a3785
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ private CompletableFuture<Boolean> checkStation(
return CompletableFuture.supplyAsync(
() -> {
log.info("checkStation [{}] [{}]", now, standInStation.getStation());
boolean b = forwarderClient.verifyPaymentNotice(station);
log.info("checkStation done success:[{}]", b);
boolean b = false;
try{
b = forwarderClient.verifyPaymentNotice(station);
}catch (Exception e){
log.error("error in verify",e);
}
log.info("checkStation done success:[{}]", b);
CosmosForwarderCallCounts forwarderCallCounts =
CosmosForwarderCallCounts.builder()
.id(UUID.randomUUID().toString())
Expand Down

0 comments on commit 01a3785

Please sign in to comment.