Commit bddb6ca4 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

fixed dag_run hash

parent cd58ea9d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -184,6 +184,8 @@ class BaseDAG:
        dag_run = self.dag_run_template.copy()
        # update values
        dag_run = override_common_keys(dag_run, kwargs)
        # set hash
        dag_run = override_common_keys(dag_run, {"dag_run": self.generate_sha1()})
        return dag_run

    @staticmethod