clean up old authtoken support

just use Bearer tokens - those are the only type of tokens we support
This commit is contained in:
Ryan Petrello
2020-08-19 12:21:32 -04:00
parent fb66766463
commit 815d691622
3 changed files with 5 additions and 6 deletions

View File

@@ -88,7 +88,7 @@ class CLI(object):
token = self.get_config('token')
if token:
self.root.connection.login(
None, None, token=token, auth_type='Bearer'
None, None, token=token,
)
else:
config.use_sessions = True