Skip to content

Commit

Permalink
Fixed mongo connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
aktoboy committed Apr 17, 2024
1 parent 1f30fb4 commit b6365d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/testing/src/main/java/com/akto/testing/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private static void setTestingRunConfig(TestingRun testingRun, TestingRunResultS
}

public static void main(String[] args) throws InterruptedException {
String mongoURI = "mongodb://localhost:27017";;
String mongoURI = System.getenv("AKTO_MONGO_CONN");
DaoInit.init(new ConnectionString(mongoURI));

boolean connectedToMongo = false;
Expand Down

0 comments on commit b6365d5

Please sign in to comment.