Skip to content

Commit

Permalink
add getter for parent to fix: spring-cloud/spring-cloud-sleuth#2023 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
HashZhang committed Sep 21, 2021
1 parent 03fd58c commit bc0d54b
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -73,6 +73,10 @@ public void setApplicationContext(ApplicationContext parent) throws BeansExcepti
this.parent = parent;
}

public ApplicationContext getParent() {
return parent;
}

public void setConfigurations(List<C> configurations) {
for (C client : configurations) {
this.configurations.put(client.getName(), client);
Expand Down

0 comments on commit bc0d54b

Please sign in to comment.