Skip to content

Commit

Permalink
Fix delay publish deadlock (apache#13583)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Dec 27, 2023
1 parent 745ba45 commit 180ff97
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,9 @@ private void registerServiceInternal(ServiceConfigBase sc) {
if (!sc.isExported()) {
return;
}
if (sc.shouldDelay()) {
return;
}
sc.register(true);
}

Expand Down

0 comments on commit 180ff97

Please sign in to comment.