We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfbf96c commit 817880dCopy full SHA for 817880d
src/main/java/com/github/jlangch/venice/util/ipc/impl/QueueValidator.java
@@ -36,7 +36,7 @@ public static void validate(final String queueName) {
36
"A queue name is limited to " + QUEUE_NAME_MAX_LEN + " characters!");
37
}
38
39
- if (!queueName.matches("wal")) {
+ if (queueName.matches("wal")) {
40
throw new IllegalArgumentException(
41
"The queue name 'wal' is a preserved name!");
42
0 commit comments