Skip to content

Commit 6b01e49

Browse files
Update CI to use new way of initializing keyspace with tablets
1 parent 810291f commit 6b01e49

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ jobs:
3838
- name: Test tablets
3939
run: |
4040
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
41-
export SCYLLA_VERSION='unstable/master:2024-01-03T08:06:57Z'
41+
export SCYLLA_VERSION='unstable/master:2024-01-17T17:56:00Z'
4242
./ci/run_integration_test.sh tests/integration/experiments/

tests/integration/experiments/test_tablets.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,9 @@ def create_ks_and_cf(self):
8080
CREATE KEYSPACE test1
8181
WITH replication = {
8282
'class': 'NetworkTopologyStrategy',
83-
'replication_factor': 1,
84-
'initial_tablets': 8
83+
'replication_factor': 1
84+
} AND tablets = {
85+
'initial': 8
8586
}
8687
""")
8788

0 commit comments

Comments
 (0)