outposts: fix __exit__ being called without params
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
f2b8d45999
commit
abe38bb16a
|
@ -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"""
|
||||
|
|
Reference in New Issue