The validation RegEx by IgnoreGroups does not accept this@that.com,foo@bar.com and instead fails due to not matching regex (?!.*\\s)|([0-9a-zA-Z\\-= _]*)(,[0-9a-zA-Z\\-=@. _]*)*. If you inspect the regex in https://regex101.com/ or similar you can see that this does not accept this@that.com,foo@bar.com as it requires , in the same group as the @.
As a workaround you can place a , at the start of the string.
To Reproduce
Steps to reproduce the behavior:
Try to provision the SAR app
Set foo@bar.com,this@that.com as the IgnoreGroups parameter
Describe the bug
The validation RegEx by IgnoreGroups does not accept
this@that.com,foo@bar.com
and instead fails due to not matching regex(?!.*\\s)|([0-9a-zA-Z\\-= _]*)(,[0-9a-zA-Z\\-=@. _]*)*
. If you inspect the regex in https://regex101.com/ or similar you can see that this does not acceptthis@that.com,foo@bar.com
as it requires,
in the same group as the@
. As a workaround you can place a,
at the start of the string.To Reproduce Steps to reproduce the behavior:
foo@bar.com,this@that.com
as theIgnoreGroups
parameterExpected behavior
IgnoreGroups
does not require starting with a,