File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ def _init_storage(self):
6969 proxy = init_storage (self .global_params ["kv_backend" ], working_dir , node_id )
7070 self .storage_actors [f"kv_{ node_id } " ] = proxy
7171 logger .info ("Create KV Storage Actor: namespace=%s" , node_id )
72-
72+
7373 for ns in graph_namespaces :
7474 proxy = init_storage (self .global_params ["graph_backend" ], working_dir , ns )
7575 self .storage_actors [f"graph_{ ns } " ] = proxy
@@ -87,11 +87,11 @@ def _scan_storage_requirements(self) -> tuple[set[str], set[str]]:
8787 if self ._function_needs_param (op_name , "graph_backend" ):
8888 graph_namespaces .add ("graph" )
8989 return kv_namespaces , graph_namespaces
90-
90+
9191 def _function_needs_param (self , op_name : str , param_name : str ) -> bool :
9292 if op_name not in self .functions :
9393 return False
94-
94+
9595 func = self .functions [op_name ]
9696
9797 if inspect .isclass (func ):
You can’t perform that action at this time.
0 commit comments