Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Tanner Lewis <[email protected]>
  • Loading branch information
lewijacn committed Oct 30, 2024
1 parent 2c38b64 commit 32126b9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/full_pr_e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
contents: read # to fetch code (actions/checkout)

jobs:
rfs-e2e-aws-test:
full-es68-e2e-aws-test:
runs-on: ubuntu-latest
steps:
- name: Sanitize branch and repo names
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,15 @@ def test_e2e_0001_default(self):
status_result: CommandResult = snapshot.status()
if status_result.success:
snapshot.delete()
snapshot.create(wait=True)
metadata.migrate()
backfill.start()
backfill.scale(units=2)
snapshot_result: CommandResult = snapshot.create(wait=True)
assert snapshot_result.success
metadata_result: CommandResult = metadata.migrate()
assert metadata_result.success
backfill_start_result: CommandResult = backfill.start()
assert backfill_start_result.success
# small enough to allow containers to be reused, big enough to test scaling out
backfill_scale_result: CommandResult = backfill.scale(units=2)
assert backfill_scale_result.success
# This document was created after snapshot and should not be included in Backfill but expected in Replay
create_document(cluster=source_cluster, index_name=index_name, doc_id=doc_id_base + "_2",
expected_status_code=HTTPStatus.CREATED, test_case=self)
Expand Down

0 comments on commit 32126b9

Please sign in to comment.