Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
disables push MFA while we fix the challenge bug (#274)
Browse files Browse the repository at this point in the history
* fix: disables push MFA while we fix the challenge bug
  • Loading branch information
tunderwood committed Oct 7, 2020
1 parent 2dd96b1 commit 21133f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ private void handleMfaResponse(AuthenticationResponse mfaResponse) {

final List<Factor> factors = new ArrayList<>(mfaResponse.getFactors());

factors.removeIf(this::isPush);

validateUserFactors(factors);

factors.forEach(
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
#

version=4.9.0
version=4.9.1
group=com.nike.cerberus
springBootVersion=2.3.4.RELEASE

0 comments on commit 21133f4

Please sign in to comment.