Skip to content

Commit d0d66c0

Browse files
authored
[ydbd_slice] fixed AttributeError for sample-config command (#15414)
1 parent ee5ceb4 commit d0d66c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/tools/ydbd_slice/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,7 @@ def main(walle_provider=None):
15191519
parser.print_help()
15201520
return
15211521

1522-
if not args.yaml_config:
1522+
if not hasattr(args, 'yaml_config') or not args.yaml_config:
15231523
warnings.warn(
15241524
'''
15251525
Using cluster.yaml for cluster configuration is deprecated.

0 commit comments

Comments
 (0)