You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by mr...@apache.org on 2016/09/10 20:45:31 UTC

usergrid git commit: Parallel test execution causing problems with SecurityIT.

Repository: usergrid
Updated Branches:
  refs/heads/hotfix-20160819 cc6bc2aba -> 92b4ebaaf


Parallel test execution causing problems with SecurityIT.


Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/92b4ebaa
Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/92b4ebaa
Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/92b4ebaa

Branch: refs/heads/hotfix-20160819
Commit: 92b4ebaafa259c66aad6658e6270fbc32610e191
Parents: cc6bc2a
Author: Michael Russo <mr...@apigee.com>
Authored: Sat Sep 10 13:45:08 2016 -0700
Committer: Michael Russo <mr...@apigee.com>
Committed: Sat Sep 10 13:45:08 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/usergrid/rest/applications/SecurityIT.java     | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/92b4ebaa/stack/rest/src/test/java/org/apache/usergrid/rest/applications/SecurityIT.java
----------------------------------------------------------------------
diff --git a/stack/rest/src/test/java/org/apache/usergrid/rest/applications/SecurityIT.java b/stack/rest/src/test/java/org/apache/usergrid/rest/applications/SecurityIT.java
index 510e245..48fbf12 100644
--- a/stack/rest/src/test/java/org/apache/usergrid/rest/applications/SecurityIT.java
+++ b/stack/rest/src/test/java/org/apache/usergrid/rest/applications/SecurityIT.java
@@ -17,6 +17,7 @@
 package org.apache.usergrid.rest.applications;
 
 
+import net.jcip.annotations.NotThreadSafe;
 import org.apache.usergrid.rest.test.resource.AbstractRestIT;
 import org.apache.usergrid.rest.test.resource.model.ApiResponse;
 import org.apache.usergrid.rest.test.resource.model.Entity;
@@ -34,6 +35,7 @@ import static org.junit.Assert.fail;
  * These tests will execute requests against certain paths (with or without credentials) to ensure access is being
  * allowed according to the REST and Services permissions defined for the resource.
  */
+@NotThreadSafe
 public class SecurityIT extends AbstractRestIT {
 
     public SecurityIT() throws Exception {}