diff options
-rw-r--r-- | pyproject.toml | 2 | ||||
-rwxr-xr-x | tunneltop/tunneltop.py | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml index 18c3f87..1ace9ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tunneltop" -version = "0.3.0" +version = "0.3.1" description = "A top-like tunnel manager" authors = ["terminaldwelelr <devi@terminaldweller.com>"] license = "GPL-3.0" diff --git a/tunneltop/tunneltop.py b/tunneltop/tunneltop.py index a45e270..fb5c5a7 100755 --- a/tunneltop/tunneltop.py +++ b/tunneltop/tunneltop.py @@ -9,8 +9,8 @@ import enum import os import signal import sys -import tomllib import typing +import tomllib class Argparser: # pylint: disable=too-few-public-methods @@ -357,7 +357,6 @@ class TunnelManager: self.data_cols[task_name]["status"] = "DOWN" del self.tunnel_test_tasks[task_name] - # return stdout, stderr except asyncio.TimeoutError: self.write_log(f"test for {task_name} timed out\n") self.data_cols[task_name]["status"] = "TMOUT" @@ -396,8 +395,7 @@ class TunnelManager: ) await asyncio.sleep(0) self.data_cols[k] = copy.deepcopy(value) - if k in self.scheduler_table: - self.scheduler_table[k] = 0 + self.scheduler_table[k] = 0 else: if ( self.data_cols[k]["command"] != data_cols_new[k]["command"] |