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 28, 2024
1 parent 2bb366b commit a5a2782
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: string

operator: equals

Expand Down

0 comments on commit a5a2782

Please sign in to comment.