-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: MFA Device recognition regression #145
Conversation
@opis-mark This should fix #144 if you run Tokendito with |
ddf8e03
to
cedcb86
Compare
e9777d4
to
3381625
Compare
@pcmxgti Thanks for putting up this PR. After updating to |
No worries! It turns out we also have to have a user agent that Okta likes for this to work correctly. We should be done with our testing shortly. |
0b225dd
to
2c567b3
Compare
tests/unit/test_okta.py
Outdated
@@ -585,7 +590,7 @@ def test_step_up_authenticate(mocker): | |||
assert okta.step_up_authenticate(pytest_config, state_token) is False | |||
|
|||
|
|||
def test_local_auth(mocker): | |||
def test_local_authicate(mocker): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐝 Spelling…
def test_local_authicate(mocker): | |
def test_local_authenticate(mocker): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch! fixed.
* Fix regression bug that removed trusted device recongnition. * Fix User-Agent field to work with Okta. * Clean up cookie passing and handling, to simplify development.
2c567b3
to
2469cfd
Compare
No description provided.