Skip to content

Commit

Permalink
Fix provider format regex
Browse files Browse the repository at this point in the history
  • Loading branch information
KostasTsiounis committed Jan 13, 2025
1 parent 0945933 commit 12a41f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ private static void checkProviderFormat(String providerInfo, boolean update) {
+ "(\\[" // constraints [optional]
+ "\\s*"
+ "([+-])?" // action [optional]
+ "[A-Za-z0-9{}.=*|:,/_\\s-]+" // constraint definition
+ "[A-Za-z0-9{}.=*|:,/\\\\_\\s-]+" // constraint definition
+ "\\])?"
+ "\\s*"
+ "$");
Expand Down

0 comments on commit 12a41f4

Please sign in to comment.