Skip to content

Commit

Permalink
update controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiangs18 committed Feb 21, 2024
1 parent 642ed48 commit 7ccbc50
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<classpathentry kind="lib" path="/jars/lib/jars/kbase/auth/kbase-auth-0.4.4.jar"/>
<classpathentry kind="lib" path="/jars/lib/jars/junit/junit-4.12.jar"/>
<classpathentry kind="lib" path="/jars/lib/jars/hamcrest/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="/jars/lib/jars/kbase/auth2/kbase-auth2test-0.6.1.jar"/>
<classpathentry kind="lib" path="/jars/lib/jars/kbase/auth2/kbase-auth2testfat-0.6.1.jar"/>
<classpathentry kind="lib" path="/jars/lib/jars/kafka/kafka-clients-2.1.0.jar"/>
<classpathentry kind="lib" path="/jars/lib/jars/kbase/shock/shock-client-0.1.0.jar"/>
<classpathentry kind="lib" path="/jars/lib/jars/amazon/V2/eventstream-1.0.1.jar"/>
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<include name="apache_commons/commons-collections-3.2.1.jar"/>
<include name="jsemver/java-semver-0.9.0.jar"/>
<include name="equalsverifier/equalsverifier-3.1.10.jar"/>
<include name="kbase/auth2/kbase-auth2test-0.6.1.jar"/>
<include name="kbase/auth2/kbase-auth2testfat-0.6.1.jar"/>
<include name="arangodb/arangodb-java-driver-6.7.2.jar"/>
<include name="arangodb/velocypack-2.4.0.jar"/>
<!-- mockito and dependencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ public static void setUpClass() throws Exception {
// set up auth
final String dbname = HandleAndBytestreamIntegrationTest.class.getSimpleName() + "Auth";
AUTH = new AuthController(
TestCommon.getJarsDir(),
"localhost:" + MONGO.getServerPort(),
dbname,
Paths.get(TestCommon.getTempDir()));
Expand Down
1 change: 0 additions & 1 deletion src/us/kbase/workspace/test/kbase/JSONRPCLayerTester.java
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ public static void setUpClass() throws Exception {
// set up auth
final String dbname = JSONRPCLayerTester.class.getSimpleName() + "Auth";
authc = new AuthController(
TestCommon.getJarsDir(),
"localhost:" + mongo.getServerPort(),
dbname,
Paths.get(TestCommon.getTempDir()));
Expand Down
1 change: 0 additions & 1 deletion src/us/kbase/workspace/test/kbase/LoggingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ public static void setUpClass() throws Exception {
// set up auth
final String dbname = LoggingTest.class.getSimpleName() + "Auth";
authc = new AuthController(
TestCommon.getJarsDir(),
"localhost:" + mongo.getServerPort(),
dbname,
Paths.get(TestCommon.getTempDir()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ public static void setUpClass() throws Exception {
// set up auth
final String dbname = SampleServiceIntegrationTest.class.getSimpleName() + "Auth";
AUTH = new AuthController(
TestCommon.getJarsDir(),
"localhost:" + MONGO.getServerPort(),
dbname,
Paths.get(TestCommon.getTempDir()));
Expand Down
1 change: 0 additions & 1 deletion src/us/kbase/workspace/test/kbase/TypeDelegationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ public static void setUp() throws Exception {
mongohost, MONGO.getTempDir()));

AUTHC = new AuthController(
TestCommon.getJarsDir(),
mongohost,
CLS + "Auth",
Paths.get(TestCommon.getTempDir()));
Expand Down

0 comments on commit 7ccbc50

Please sign in to comment.