Skip to content

Commit

Permalink
Fix invalid number usage in oauth variable
Browse files Browse the repository at this point in the history
Recent changes to the oauth token maxage variable introduced it as a
number instead of a string or integer, which SCAP is expecting. This
commit updates the variable to be a string instead of a number type, so
that the resulting datastream is valid and parsable by the compliance
oeprator profile parsers.

Without this change, content from the latest branch will cause the
compliance operator installs to hang because it can't parse the xccdf.
  • Loading branch information
rhmdnd committed Feb 21, 2024
1 parent b895bce commit 3cb1249
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: 'OAuth Token Maximum Age'

description: 'Enter OAuth Token Maximum Age Timeout'

type: number
type: int

operator: equals

Expand Down

0 comments on commit 3cb1249

Please sign in to comment.