Skip to content

Commit

Permalink
Prevent double auto-configuration of Config object
Browse files Browse the repository at this point in the history
(cherry picked from commit 5d5ff8e)
  • Loading branch information
geoand authored and manusa committed Feb 4, 2022
1 parent 5c508ba commit 81c11ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public static Config empty() {
* @return Config object
*/
public static Config autoConfigure(String context) {
Config config = new Config();
Config config = new Config(false);
return autoConfigure(config, context);
}

Expand Down

0 comments on commit 81c11ca

Please sign in to comment.