Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unit test testSharedInstance fail #13908

Merged
merged 2 commits into from
Jan 24, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: registry Incomplete
  • Loading branch information
shibd committed Jan 24, 2022
commit 9ce1c6f899d3bd129c603559dc2e3200f6c08771
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ public LocalMemoryMetadataStore(String metadataURL, MetadataStoreConfig metadata
if (value == null) {
value = new HashSet<>();
}
value.forEach(v -> registerListener(v));
value.forEach(v -> {
registerListener(v);
v.registerListener(this);
});
value.add(this);
return value;
});
Expand Down