Skip to content

Commit

Permalink
Merge pull request #1208 from akto-api-security/hotfix/inactive_test_…
Browse files Browse the repository at this point in the history
…template_fix

Added fix for only running active tests
  • Loading branch information
aktoboy authored Jul 3, 2024
2 parents e6ea66d + efde8c9 commit a738c1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void apiWiseInit(TestingRun testingRun, ObjectId summaryId, boolean debug
List<TestRoles> testRoles = sampleMessageStore.fetchTestRoles();
AuthMechanism authMechanism = authMechanismStore.getAuthMechanism();;

Map<String, TestConfig> testConfigMap = YamlTemplateDao.instance.fetchTestConfigMap(false, false);
Map<String, TestConfig> testConfigMap = YamlTemplateDao.instance.fetchTestConfigMap(false, true);

List<CustomAuthType> customAuthTypes = CustomAuthTypeDao.instance.findAll(CustomAuthType.ACTIVE,true);
TestingUtil testingUtil = new TestingUtil(authMechanism, sampleMessageStore, testRoles, testingRun.getUserEmail(), customAuthTypes);
Expand Down

0 comments on commit a738c1c

Please sign in to comment.