Skip to content

Commit

Permalink
Merge pull request #4043 from arjantijms/PAYARA-3928-CDI-event-npe
Browse files Browse the repository at this point in the history
PAYARA-3928 Fix NPE when notification via CDI eventbus comes in
  • Loading branch information
arjantijms committed Jun 14, 2019
2 parents 3526be0 + ec81477 commit 69c4de8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -236,7 +236,7 @@ else if(backupClassLoader != null) {
transactionManager.clearThreadTx();
}

if (requestTracing != null && requestTracing.isRequestTracingEnabled()) {
if (requestTracing != null && requestTracing.isRequestTracingEnabled() && handle.getSpanContextMap() != null) {
startConcurrentContextSpan(invocation, handle);
}

Expand Down

0 comments on commit 69c4de8

Please sign in to comment.