Skip to content

Commit

Permalink
fix(exception-handling): [eclipse-tractusx#841] remove obsolete todos
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmf committed Aug 1, 2024
1 parent 7c80642 commit 1c4ab9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private SubmodelDescriptor getSubmodel(final EdcSubmodelFacade submodelFacade,

throw new EdcClientException(
String.format("Called %s connectorEndpoints but did not get any submodels. Connectors: '%s'",
connectorEndpoints.size(), String.join(", ", connectorEndpoints))); // TODO (mfischer)
connectorEndpoints.size(), String.join(", ", connectorEndpoints)));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private void sendNotifications(final Jobs completedJob, final BpnInvestigationJo
investigationJobUpdate.withUnansweredNotifications(Collections.singletonList(new Notification(notificationId, bpn)));
} catch (final EdcClientException e) {
log.error("Exception during sending EDC notification.", e);
investigationJobUpdate.update(completedJob, SupplyChainImpacted.UNKNOWN); // TODO (mfischer) ???
investigationJobUpdate.update(completedJob, SupplyChainImpacted.UNKNOWN);
}
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void receiveEdcCallback(final @RequestBody String endpointDataReferenceCa
final String contractId = endpointDataReference.getContractId();
storeEdr(contractId, endpointDataReference);
} catch (EdcClientException e) {
log.error("Could not deserialize Endpoint Data Reference {}", endpointDataReferenceCallback); // TODO (mfischer)???
log.error("Could not deserialize Endpoint Data Reference {}", endpointDataReferenceCallback);
}
}

Expand Down

0 comments on commit 1c4ab9e

Please sign in to comment.