Skip to content

Commit 67917b5

Browse files
committed
Getting the full schemas is causing an OOM when trying to run the test
1 parent 4d034b7 commit 67917b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/src/test/java/io/orkes/conductor/client/http/SchemaClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void testMethods() {
6262
Assertions.assertEquals(1, fetchedByVersion.getVersion());
6363

6464
// 5. Get all schemas and assert name is present
65-
List<SchemaDef> all = schemaClient.getAllSchemas(false);
65+
List<SchemaDef> all = schemaClient.getAllSchemas(true);
6666
Assertions.assertNotNull(all);
6767
Assertions.assertTrue(all.stream().anyMatch(s -> SCHEMA_NAME.equals(s.getName())));
6868

0 commit comments

Comments
 (0)