spring security allow posting pets
diff --git a/juneau-petstore-server/src/main/java/org/apache/juneau/petstore/config/SpringSecurityConfig.java b/juneau-petstore-server/src/main/java/org/apache/juneau/petstore/config/SpringSecurityConfig.java
index 37218b4..a07b6f9 100644
--- a/juneau-petstore-server/src/main/java/org/apache/juneau/petstore/config/SpringSecurityConfig.java
+++ b/juneau-petstore-server/src/main/java/org/apache/juneau/petstore/config/SpringSecurityConfig.java
@@ -29,7 +29,7 @@
                 .httpBasic()
                 .and()
                 .authorizeRequests()
-                .antMatchers(HttpMethod.POST, "/petstore/pet").hasRole("ADMIN")
+               // .antMatchers(HttpMethod.POST, "/petstore/pet").hasRole("ADMIN")
                 .antMatchers(HttpMethod.PUT, "/petstore/pet/**").hasRole("ADMIN")
                 .antMatchers(HttpMethod.DELETE, "/petstore/pet/**").hasRole("ADMIN")
                 .and()