diff options
author | 2021-07-17 21:05:14 +0100 | |
---|---|---|
committer | 2021-07-17 21:05:14 +0100 | |
commit | 6506c958bd4bf0949289de643cd67cfae23dd8fb (patch) | |
tree | 8098a426afc6418424a333ff810ac99a3d7d3ed3 /arthur/bot.py | |
parent | feat: support in-cluster configuration (diff) |
fix: don't await incluster config load
Diffstat (limited to 'arthur/bot.py')
-rw-r--r-- | arthur/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/bot.py b/arthur/bot.py index 59ec6f9..24d7546 100644 --- a/arthur/bot.py +++ b/arthur/bot.py @@ -41,7 +41,7 @@ class KingArthur(Bot): if Path("~/.kube/config").exists(): await config.load_kube_config() else: - await config.load_incluster_config() + config.load_incluster_config() logger.info(f"Logged in <red>{self.user}</>") |