Skip to content

Commit

Permalink
Rename KeyRetrieverRunner thread to KeyRetriever
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Mar 28, 2023
1 parent 5771e25 commit f431e9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ public void startKeyRetriever(CertificateAuthority ca) throws EBaseException {
}

KeyRetrieverRunner runner = new KeyRetrieverRunner(keyRetriever, ca);
Thread thread = new Thread(runner, "KeyRetrieverRunner-" + authorityID);
Thread thread = new Thread(runner, "KeyRetriever-" + authorityID);
thread.start();

keyRetrievers.put(authorityID, thread);
Expand Down

0 comments on commit f431e9b

Please sign in to comment.