Skip to content

Commit 8799993

Browse files
authored
Merge pull request #10 from zhang-x-z/fix-dataflow-run
Fix get dataset error in dataflow run function
2 parents c850d36 + 0129213 commit 8799993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fluid/api/fluid_dataflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def run(self, run_id, ttl_seconds_after_finished=constants.DEFAULT_DATAFLOW_TIME
224224
The FlowHandle object which may track the flow's status.
225225
"""
226226
try:
227-
dataset = self.fluid_client.get_dataset(self.dataset_name)
227+
dataset = self.fluid_client.get_dataset(self.dataset_name, self.dataset_namespace)
228228
except Exception as e:
229229
raise RuntimeError(f"failed to get dataset {self.dataset_name}: {e}")
230230

0 commit comments

Comments
 (0)