Skip to content

Commit

Permalink
Disable Simulation
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Chrzan <[email protected]>
Signed-off-by: mchrza <[email protected]>
  • Loading branch information
mchrza committed Oct 10, 2024
1 parent b64498a commit df3d473
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void testCreateIndex() throws Exception {

LambdaBasedStep step = new CreateIndex().withSpaceId(SPACE_ID).withIndex(GEO);

sendLambdaStepRequest(step, START_EXECUTION, true);
sendLambdaStepRequest(step, START_EXECUTION, false);
//Index Creation takes time
sleep(1000);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void testDropIndexesStep() throws Exception {
Assertions.assertTrue(listExistingIndexes(SPACE_ID).size() > 0);

LambdaBasedStep step = new DropIndexes().withSpaceId(SPACE_ID);
sendLambdaStepRequest(step, START_EXECUTION, true);
sendLambdaStepRequest(step, START_EXECUTION, false);
sleep(1000);

Assertions.assertEquals(0, listExistingIndexes(SPACE_ID).size());
Expand Down

0 comments on commit df3d473

Please sign in to comment.