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 5b37da3 commit cef0d74Copy full SHA for cef0d74
x-pack/platform/plugins/shared/streams/server/lib/streams/client.ts
@@ -329,7 +329,7 @@ export class StreamsClient {
329
throw new StatusError('Stream name must not be empty.', 400);
330
}
331
332
- if (name.length >= MAX_STREAM_NAME_LENGTH) {
+ if (name.length > MAX_STREAM_NAME_LENGTH) {
333
throw new StatusError(
334
`Stream name cannot be longer than ${MAX_STREAM_NAME_LENGTH} characters.`,
335
400
0 commit comments