Skip to content

Commit f890925

Browse files
authored
Merge ad6b64b into 4c14c55
2 parents 4c14c55 + ad6b64b commit f890925

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ydb/tools/ydbd_slice/kube/handlers.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from collections import defaultdict
77
from kubernetes.client import Configuration
88

9-
from ydb.tools.ydbd_slice import nodes, handlers
9+
from ydb.tools.ydbd_slice import nodes
1010
from ydb.tools.ydbd_slice.kube import api, kubectl, yaml, generate, cms, dynconfig
1111

1212

@@ -230,10 +230,9 @@ def slice_nodeclaim_format(api_client, project_path, manifests):
230230
logger.info('no nodes found, nothing to format.')
231231
return
232232
node_list = nodes.Nodes(node_list)
233-
handlers.format_drivers(node_list)
234233
cmd = r"sudo find /dev/disk/ -path '*/by-partlabel/kikimr_*' " \
235234
r"-exec dd if=/dev/zero of={} bs=1M count=1 status=none \;"
236-
nodes.execute_async(cmd)
235+
node_list.execute_async(cmd)
237236

238237

239238
def slice_nodeclaim_delete(api_client, project_path, manifests):

0 commit comments

Comments
 (0)