outposts: fix __exit__ being called without params

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-12-25 17:52:20 +01:00
parent f2b8d45999
commit abe38bb16a
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class BaseController:
def __exit__(self, exc_type, exc_value, traceback):
"""Cleanup after usage"""
self.client.__exit__()
self.client.__exit__(exc_type, exc_value, traceback)
def get_static_deployment(self) -> str:
"""Return a static deployment configuration"""