diff --git a/pom.xml b/pom.xml index b26059d0..92da1b64 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ api jar ${project.groupId}:${project.artifactId} - 3.4.29 + 3.4.30 Hygieia Rest API Layer https://github.com/Hygieia/api diff --git a/src/main/java/com/capitalone/dashboard/config/WebSecurityConfig.java b/src/main/java/com/capitalone/dashboard/config/WebSecurityConfig.java index ebdbb7ab..519a21bf 100644 --- a/src/main/java/com/capitalone/dashboard/config/WebSecurityConfig.java +++ b/src/main/java/com/capitalone/dashboard/config/WebSecurityConfig.java @@ -96,6 +96,7 @@ protected void configure(HttpSecurity http) throws Exception { .antMatchers(HttpMethod.POST, "/generic-binary-artifact").permitAll() .antMatchers(HttpMethod.POST, "/metadata/create").permitAll() .antMatchers(HttpMethod.POST, "/v3/deploy").permitAll() + .antMatchers(HttpMethod.POST, "/autodiscovery/updateStatus").permitAll() .anyRequest().authenticated() .and() .addFilterBefore(standardLoginRequestFilter(), UsernamePasswordAuthenticationFilter.class)