Skip to content

Commit

Permalink
fix null point excep
Browse files Browse the repository at this point in the history
  • Loading branch information
huanglongchao committed Jun 25, 2024
1 parent c9579cf commit f50c4ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public static DataSlotDiffPublisherResult diffPublishersResult(
for (Map.Entry<String, Publisher> p : publisherMap.entrySet()) {

// filter publishers
if (!acceptorManager.accept(
if (acceptorManager != null && !acceptorManager.accept(
SyncAcceptorRequest.buildRequest(dataInfoId, p.getValue().getPublishSource()))) {
continue;
}
Expand Down

0 comments on commit f50c4ac

Please sign in to comment.