You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2022/10/14 19:19:31 UTC

[incubator-heron] branch master updated: Bug fix: job_page_link serialization issue (#3851)

This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new 30406802331 Bug fix: job_page_link serialization issue (#3851)
30406802331 is described below

commit 30406802331e6afc5f94408abde3909b90d6d938
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Fri Oct 14 15:19:24 2022 -0400

    Bug fix: job_page_link serialization issue (#3851)
---
 heron/tools/tracker/src/python/topology.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/heron/tools/tracker/src/python/topology.py b/heron/tools/tracker/src/python/topology.py
index b49ea551be5..bfecf09fd29 100644
--- a/heron/tools/tracker/src/python/topology.py
+++ b/heron/tools/tracker/src/python/topology.py
@@ -567,7 +567,7 @@ class Topology:
     return TopologyInfoSchedulerLocation(
         name=scheduler_location.topology_name,
         http_endpoint=scheduler_location.http_endpoint,
-        job_page_link=scheduler_location.job_page_link \
+        job_page_link=scheduler_location.job_page_link[0] \
             if scheduler_location.job_page_link else "",
     )