Skip to content

Commit d148f9c

Browse files
authored
Remove some from kikimr_config (#9032)
1 parent 9e26730 commit d148f9c

File tree

4 files changed

+0
-25
lines changed

4 files changed

+0
-25
lines changed

ydb/public/tools/lib/cmds/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,6 @@ def produce_arguments(args):
513513
parser.add_argument("--fixed-ports", action='store_true', default=False)
514514
parser.add_argument("--base-port-offset", action="store", type=int, default=0)
515515
parser.add_argument("--pq-client-service-type", action='append', default=[])
516-
parser.add_argument("--enable-datastreams", action='store_true', default=False)
517516
parser.add_argument("--enable-pqcd", action='store_true', default=False)
518517
parsed, _ = parser.parse_known_args(args)
519518
arguments = EmptyArguments()
@@ -527,7 +526,6 @@ def produce_arguments(args):
527526
arguments.debug_logging = parsed.debug_logging
528527
arguments.enable_pq = parsed.enable_pq
529528
arguments.pq_client_service_types = parsed.pq_client_service_type
530-
arguments.enable_datastreams = parsed.enable_datastreams
531529
arguments.enable_pqcd = parsed.enable_pqcd
532530
return arguments
533531

ydb/public/tools/local_ydb/__main__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,6 @@
145145
'--enable-pq', default=False, action='store_true',
146146
help='Enable pqv1 service in kikimr'
147147
)
148-
sub_parser.add_argument(
149-
'--enable-datastreams', default=False, action='store_true',
150-
help='Enable datastreams service'
151-
)
152148
sub_parser.add_argument(
153149
'--public-http-config-path', default=None,
154150
help='The path to public HTTP config'

ydb/tests/library/harness/kikimr_config.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ def __init__(
115115
nodes=None,
116116
additional_log_configs=None,
117117
port_allocator=None,
118-
has_cluster_uuid=True,
119118
load_udfs=False,
120119
udfs_path=None,
121120
output_path=None,
@@ -124,7 +123,6 @@ def __init__(
124123
slot_count=0,
125124
pdisk_store_path=None,
126125
version=None,
127-
enable_nbs=False,
128126
enable_sqs=False,
129127
domain_name='Root',
130128
suppress_version_check=True,
@@ -144,7 +142,6 @@ def __init__(
144142
fq_config_path=None,
145143
public_http_config_path=None,
146144
public_http_config=None,
147-
enable_datastreams=False,
148145
auth_config_path=None,
149146
enable_public_api_external_blobs=False,
150147
node_kind=None,
@@ -181,9 +178,6 @@ def __init__(
181178
erasure = Erasure.NONE if erasure is None else erasure
182179
self.__grpc_ssl_enable = grpc_ssl_enable
183180
self.__grpc_tls_data_path = None
184-
self.__grpc_ca_file = None
185-
self.__grpc_cert_file = None
186-
self.__grpc_key_file = None
187181
self.__grpc_tls_ca = None
188182
self.__grpc_tls_key = None
189183
self.__grpc_tls_cert = None
@@ -200,7 +194,6 @@ def __init__(
200194
if nodes is None:
201195
nodes = rings_count * erasure.min_fail_domains
202196
self._rings_count = rings_count
203-
self._enable_nbs = enable_nbs
204197
self.__node_ids = list(range(1, nodes + 1))
205198
self.n_to_select = n_to_select
206199
if self.n_to_select is None:
@@ -526,10 +519,6 @@ def metering_file_path(self):
526519
def audit_file_path(self):
527520
return self.yaml_config.get('audit_config', {}).get('file_backend', {}).get('file_path')
528521

529-
@property
530-
def nbs_enable(self):
531-
return self._enable_nbs
532-
533522
@property
534523
def sqs_service_enabled(self):
535524
return self.yaml_config['sqs_config']['enable_sqs']
@@ -538,10 +527,6 @@ def sqs_service_enabled(self):
538527
def output_path(self):
539528
return self.__output_path
540529

541-
def set_binary_path(self, binary_path):
542-
self.__binary_path = binary_path
543-
return self
544-
545530
@property
546531
def binary_path(self):
547532
if self.__binary_path is not None:

ydb/tests/library/harness/kikimr_runner.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,6 @@ def binary_path(self):
115115
def command(self):
116116
return self.__make_run_command()
117117

118-
def set_binary_path(self, binary_path):
119-
self.__binary_path = binary_path
120-
return self.__binary_path
121-
122118
def format_pdisk(self, pdisk_path, disk_size, **kwargs):
123119
logger.debug("Formatting pdisk %s on node %s, disk_size %s" % (pdisk_path, self, disk_size))
124120
if pdisk_path.startswith('SectorMap'):

0 commit comments

Comments
 (0)