Skip to content

Commit

Permalink
fix(PropertySource): add a delegate accessor to SecretAwarePropertySo…
Browse files Browse the repository at this point in the history
…urce to fix clouddriver failure due to inaccessible bootstrap property source.
  • Loading branch information
kirangodishala committed Nov 28, 2023
1 parent 9de47ff commit cf82d44
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,8 @@ public String[] getPropertyNames() {
public boolean containsProperty(String name) {
return delegate.containsProperty(name);
}

public EnumerablePropertySource<T> getDelegate() {
return delegate;
}
}

0 comments on commit cf82d44

Please sign in to comment.