Skip to content

Commit dfe3413

Browse files
authored
Merge pull request #123 from britive/v1.6.1rc3
v1.6.1rc3 develop
2 parents f95c07f + 7dbafab commit dfe3413

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
* As of v1.4.0 release candidates will be published in an effort to get new features out faster while still allowing time for full QA testing before moving the release candidate to a full release.
44

5+
## v1.6.1rc3 [2023-12-13]
6+
#### What's New
7+
* None
8+
9+
#### Enhancements
10+
* None
11+
12+
#### Bug Fixes
13+
* Continuing to troubleshoot the `401 - EOOOO` login issue.
14+
15+
#### Dependencies
16+
* None
17+
18+
#### Other
19+
* None
20+
21+
522
## v1.6.1rc2 [2023-12-08]
623
#### What's New
724
* None

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pybritive
3-
version = 1.6.1rc2
3+
version = 1.6.1rc3
44
author = Britive Inc.
55
author_email = support@britive.com
66
description = A pure Python CLI for Britive

src/pybritive/britive_cli.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def login(self, explicit: bool = False, browser: str = None):
101101
token=self.token,
102102
query_features=False
103103
)
104+
self.b.my_access.whoami() # this is what may cause UnauthorizedRequest
104105
except exceptions.UnauthorizedRequest as e:
105106
raise click.ClickException('Invalid API token provided.') from e
106107
except exceptions.InvalidRequest as e:
@@ -123,6 +124,7 @@ def login(self, explicit: bool = False, browser: str = None):
123124
token=self.credential_manager.get_token(),
124125
query_features=False
125126
)
127+
self.b.my_access.whoami() # this is what may cause UnauthorizedRequest
126128
break
127129
except exceptions.UnauthorizedRequest as e:
128130
if '401 - e0000' in str(e).lower():

0 commit comments

Comments
 (0)