Skip to content

Commit

Permalink
Bugfix: Exists authentication script is false if isTokenManager inactive
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed Dec 12, 2024
1 parent 55c98e0 commit 2a7da1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public Resource fetchAuthenticationScript(String projectCode, String bridgehead)

public Boolean existsAuthenticationScript(String projectCode, String bridgehead) {
if (!isTokenManagerActive) {
return true;
return false;
}
List<String> tokenManagerIds = fetchTokenManagerIds(fetchProjectBridgeheads(projectCode, bridgehead, sessionUser.getEmail()));
return Boolean.valueOf(webClient.post()
Expand Down

0 comments on commit 2a7da1b

Please sign in to comment.