Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Oct 15, 2021
1 parent a61ad4c commit ae33106
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ jobs:
python3 -m pytest -s -vvv tests/kubernetes/test_store_service.py -k test_demo_after_restart
- name: Clean
# if: always()
if: always()
run: |
export JAVA_HOME=/usr/lib/jvm/default-java/
HADOOP_SSH_OPTS="-o StrictHostKeyChecking=no" /tmp/hadoop-2.10.1/sbin/stop-dfs.sh || true
Expand Down
5 changes: 2 additions & 3 deletions coordinator/gscoordinator/io_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,8 @@ def _filter_progress(self, line):
# print('show_progress: ', len(line), ", ", line)
if "PROGRESS--" not in line:
return line
else:
self._show_progress(line)
return None
self._show_progress(line)
return None


class PipeWatcher(object):
Expand Down

0 comments on commit ae33106

Please sign in to comment.