Skip to content

Commit

Permalink
[JENKINS-69930] NullPointerException from getUseDiskCache in SAML plu…
Browse files Browse the repository at this point in the history
…gin (#280)
  • Loading branch information
kuisathaverat committed Oct 24, 2022
1 parent 1889bef commit 1350758
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public String getNameIdPolicyFormat() {
}

public Boolean getUseDiskCache() {
return useDiskCache;
return useDiskCache != null ? useDiskCache : false;
}

@DataBoundSetter
Expand Down

0 comments on commit 1350758

Please sign in to comment.