Skip to content

Commit

Permalink
Squashable commit; updates overall recipe to follow the latest guidan…
Browse files Browse the repository at this point in the history
…ce received

Signed-off-by: Laird Nelson <[email protected]>
  • Loading branch information
ljnelson committed Sep 6, 2023
1 parent dd7bcec commit 4500c0e
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,14 @@ public OciSecretsMpMetaConfigProvider() {
@Override
@SuppressWarnings("deprecation")
public List<? extends ConfigSource> create(String type, Config metaConfig, String profile) {
return List.of(MpConfigSources.create(this.p.create(type, metaConfig)));
return List.of(MpConfigSources.create(Config.builder()
.disableEnvironmentVariablesSource()
.disableFilterServices()
.disableMapperServices()
.disableParserServices()
.disableSystemPropertiesSource()
.addSource(this.p.create(type, metaConfig))
.build()));
}

/**
Expand Down

0 comments on commit 4500c0e

Please sign in to comment.