This is an automated email from the ASF dual-hosted git repository. thinker0 pushed a commit to branch feature/fix-topology-updater in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
commit e9e46abaa721ce4bc932b5a5571aca4c28baf826 Author: choi se <[email protected]> AuthorDate: Thu May 12 22:29:55 2022 +0900 typo --- heron/tools/tracker/src/python/topology.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/heron/tools/tracker/src/python/topology.py b/heron/tools/tracker/src/python/topology.py index 89a6ac6409c..877e50b5dec 100644 --- a/heron/tools/tracker/src/python/topology.py +++ b/heron/tools/tracker/src/python/topology.py @@ -590,11 +590,8 @@ class Topology: packing_plan=self.packing_plan if packing_plan is ... else packing_plan, execution_state=self.execution_state if execution_state is ... else execution_state, tmanager=self.tmanager if tmanager is ... else tmanager, - scheduler_location=( - self.scheduler_location - if scheduler_location is ... else - scheduler_location - ), + scheduler_location=self.scheduler_location \ + if scheduler_location is ... else scheduler_location, ) if t_state.physical_plan: id_ = t_state.physical_plan.topology.id
