Merge pull request #2496 from influxdata/jgm-fix-perf

chore: fix perf again, after another protobuf change
pull/24376/head
kodiakhq[bot] 2021-09-09 15:28:18 +00:00 committed by GitHub
commit ede83befc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 6 deletions

View File

@ -492,10 +492,11 @@ def grpc_create_database(router_id, writer_id):
'direction': 'DIRECTION_WRITE', 'direction': 'DIRECTION_WRITE',
'type': 'kafka', 'type': 'kafka',
'connection': '127.0.0.1:9093', 'connection': '127.0.0.1:9093',
'n_sequencers': 1,
'creation_config': {},
'connection_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', 'direction': 'DIRECTION_READ',
'type': 'kafka', 'type': 'kafka',
'connection': '127.0.0.1:9093', 'connection': '127.0.0.1:9093',
'n_sequencers': 1,
'creation_config': {},
'connection_config': {}, 'connection_config': {},
'auto_create_sequencers': False, 'creation_config': {
'n_sequencers': 1,
'options': {},
},
}, },
}, },
} }