You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by hu...@apache.org on 2019/01/18 19:26:07 UTC

[incubator-heron] branch huijunw/fixexecutorassert updated: fix_style

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

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


The following commit(s) were added to refs/heads/huijunw/fixexecutorassert by this push:
     new 0ec5e85  fix_style
0ec5e85 is described below

commit 0ec5e85027dac72fddcee6a8553484dc5d1cd1b2
Author: Huijun Wu <hu...@twitter.com>
AuthorDate: Fri Jan 18 11:25:36 2019 -0800

    fix_style
---
 heron/executor/src/python/heron_executor.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/heron/executor/src/python/heron_executor.py b/heron/executor/src/python/heron_executor.py
index 2edfada..6c8779d 100755
--- a/heron/executor/src/python/heron_executor.py
+++ b/heron/executor/src/python/heron_executor.py
@@ -982,10 +982,10 @@ class HeronExecutor(object):
     if self._get_instance_plans(self.packing_plan, self.shard) is None and self.shard != 0:
       retval = {}
       retval['heron-shell'] = [
-        '%s' % self.heron_shell_binary,
-        '--port=%s' % self.shell_port,
-        '--log_file_prefix=%s/heron-shell-%s.log' % (self.log_dir, self.shard),
-        '--secret=%s' % self.topology_id]
+          '%s' % self.heron_shell_binary,
+          '--port=%s' % self.shell_port,
+          '--log_file_prefix=%s/heron-shell-%s.log' % (self.log_dir, self.shard),
+          '--secret=%s' % self.topology_id]
       return retval
 
     if self.shard == 0: