2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-04-26 02:31:28 +00:00

Fix deployment/storage handling

This commit is contained in:
Jarrod Johnson
2026-04-22 10:18:32 -04:00
parent b1568ca01e
commit 06786f202c

View File

@@ -1467,10 +1467,10 @@ async def handle_path(path, operation, configmanager, inputdata=None, autostrip=
return await handle_node_request(configmanager, inputdata, operation,
pathcomponents, autostrip)
elif pathcomponents[0] == 'deployment':
return await handle_deployment(configmanager, inputdata, pathcomponents,
return handle_deployment(configmanager, inputdata, pathcomponents,
operation)
elif pathcomponents[0] == 'storage':
return await handle_storage(configmanager, inputdata, pathcomponents,
return handle_storage(configmanager, inputdata, pathcomponents,
operation)
elif pathcomponents[0] == 'nodegroups':
return await handle_nodegroup_request(configmanager, inputdata,