Skip to content

Commit

Permalink
catalog: fix error message, #TASK-6183
Browse files Browse the repository at this point in the history
  • Loading branch information
pfurio committed May 7, 2024
1 parent cc9f2ca commit 7b655a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public static void checkValidUserId(String userId) throws CatalogParameterExcept
}
if (!userId.matches("^[A-Za-z0-9]([-_.@]?[A-Za-z0-9])*$")) {
throw new CatalogParameterException("Invalid user id. Id needs to start by any character and might contain single '-', '_', "
+ "'.', symbols followed by any character or number.");
+ "'.' or '@' symbols followed by any character or number.");
}
}

Expand Down

0 comments on commit 7b655a7

Please sign in to comment.