Skip to content

Commit

Permalink
chore: fixed logging prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Brunkow Moser committed Jan 3, 2024
1 parent ecbea49 commit 7de2981
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void run() {
public void searchEndpoint(String processId, String bpn, String endpoint){
//Search Digital Twin Catalog for each connectionURL with a timeout time
SearchDtrCatalog searchDtrCatalog = new SearchDtrCatalog(endpoint);
Thread asyncThread = ThreadUtil.runThread(searchDtrCatalog, "SearchEndpoint"+processId+"-"+bpn+"-"+endpoint);
Thread asyncThread = ThreadUtil.runThread(searchDtrCatalog, "SearchEndpoint-"+processId+"-"+bpn+"-"+endpoint);
Dtr dtr = new Dtr("", endpoint, "", bpn, DateTimeUtil.addHoursToCurrentTimestamp(dtrConfig.getTemporaryStorage().getLifetime()), true);
try {
if (!asyncThread.join(Duration.ofSeconds(searchTimeoutSeconds))) {
Expand Down

0 comments on commit 7de2981

Please sign in to comment.