From 451e0031bdcb3c20cafd90d81f329bf0f41df384 Mon Sep 17 00:00:00 2001 From: Dict Xiong Date: Sat, 27 Aug 2022 01:26:44 +0800 Subject: [PATCH] debug --- .github/workflows/test.yml | 9 ++++++--- tools/log.py | 7 ++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db2db78..3884143 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: run: | sudo apt update sudo apt install -y git python3 python3-pip zsh curl inetutils-ping - sudo apt remove -y vim + sudo apt remove -y vim tmux sudo pip3 install requests - name: checkout repo @@ -22,6 +22,9 @@ jobs: pwd ./install.sh + - name: checkout repo + uses: actions/checkout@v3 + - name: antigen build shell: /bin/zsh -ileo PIPE_FAIL {0} run: | @@ -43,16 +46,16 @@ jobs: dfs cd pwd dfs version + dfs log 1 l dogo tools/common.sh get_os_type tools/common.sh get_linux_dist + bash -x tools/common.sh post_log 1 2 3 - name: check scripts and alias (no ret check) shell: /bin/zsh -il {0} run: | - dfs log 1 - bash -x tools/common.sh post_log 1 2 3 p114 -c 4 return 0 diff --git a/tools/log.py b/tools/log.py index 9cc7c60..fad982b 100644 --- a/tools/log.py +++ b/tools/log.py @@ -63,10 +63,11 @@ if __name__ == "__main__": logging.info("200 ok") exit(0) elif resp.status_code == 403: - logging.error("403 forbidden") + logging.warn("403 forbidden") logging.info("you may need to register your hostname and uuid") + logging.info(f"hostname: {hostname}, uuid: {uuid}") + exit(0) else: logging.error("unknown error ") logging.error(f"{resp.status_code}: {resp.text}") - logging.info(f"hostname: {hostname}, uuid: {uuid}") - exit(1) + exit(1)