From 0407d5228e38d70033822fb8a9c12a4ab9af5b2f Mon Sep 17 00:00:00 2001 From: Jacob Marble Date: Thu, 9 Sep 2021 08:02:35 -0700 Subject: [PATCH] chore: fix perf again, after another protobuf change --- perf/perf.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/perf/perf.py b/perf/perf.py index 2033f72d2b..fb05dac4cf 100755 --- a/perf/perf.py +++ b/perf/perf.py @@ -492,10 +492,11 @@ def grpc_create_database(router_id, writer_id): 'direction': 'DIRECTION_WRITE', 'type': 'kafka', 'connection': '127.0.0.1:9093', - 'n_sequencers': 1, - 'creation_config': {}, 'connection_config': {}, - 'auto_create_sequencers': False, + 'creation_config': { + 'n_sequencers': 1, + 'options': {}, + }, }, }, } @@ -526,10 +527,11 @@ def grpc_create_database(router_id, writer_id): 'direction': 'DIRECTION_READ', 'type': 'kafka', 'connection': '127.0.0.1:9093', - 'n_sequencers': 1, - 'creation_config': {}, 'connection_config': {}, - 'auto_create_sequencers': False, + 'creation_config': { + 'n_sequencers': 1, + 'options': {}, + }, }, }, }