Skip to content

Commit

Permalink
Fixed gradle check errors
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Bogan <rbogan@amazon.com>
  • Loading branch information
ryanbogan committed May 18, 2022
1 parent 5a52734 commit 30048df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ public String executor() {

public static ExtensionsSettings readFromExtensionsYml(String filePath) throws Exception {
ObjectMapper objectMapper = new ObjectMapper(new YAMLFactory());
objectMapper.disable(MapperFeature.CAN_OVERRIDE_ACCESS_MODIFIERS);
InputStream input = ExtensionsOrchestrator.class.getResourceAsStream(filePath);
ExtensionsSettings extensionSettings = objectMapper.readValue(input, ExtensionsSettings.class);
return extensionSettings;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ grant {
permission jdk.net.NetworkPermission "setOption.TCP_KEEPCOUNT";

permission java.lang.RuntimePermission "accessDeclaredMembers";
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";

// Allow read access to all system properties
permission java.util.PropertyPermission "*", "read";
Expand Down

0 comments on commit 30048df

Please sign in to comment.