stefan-egli commented on a change in pull request #247:
URL: https://github.com/apache/jackrabbit-oak/pull/247#discussion_r481249777
##########
File path:
oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/util/Utils.java
##########
@@ -983,7 +1005,9 @@ public static void alignWithExternalRevisions(@NotNull
NodeDocument rootDoc,
public static void joinQuietly(Thread... threads) {
for (Thread t : threads) {
try {
- t.join();
+ if (t != null) {
+ t.join();
+ }
Review comment:
See related [comment
below](https://github.com/apache/jackrabbit-oak/pull/247#discussion_r481248717)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]