aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/bot.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-07-17 21:05:14 +0100
committerGravatar Joe Banks <[email protected]>2021-07-17 21:05:14 +0100
commit6506c958bd4bf0949289de643cd67cfae23dd8fb (patch)
tree8098a426afc6418424a333ff810ac99a3d7d3ed3 /arthur/bot.py
parentfeat: support in-cluster configuration (diff)
fix: don't await incluster config load
Diffstat (limited to 'arthur/bot.py')
-rw-r--r--arthur/bot.py2
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}</>")