EventStore / EventStoreDB-Client-Java

Official Asynchronous Java 8+ Client Library for EventStoreDB 20.6+
https://eventstore.com
Apache License 2.0
63 stars 19 forks source link

Incorrect regex in documentation #200

Closed causton81 closed 1 year ago

causton81 commented 1 year ago

This Java example has the line String excludeSystemEventsRegex = "/^[^\\$].*/"; NOTE surrounding / https://developers.eventstore.com/clients/grpc/subscriptions.html#filtering-out-system-events

I have to remove the outer / and use just final String excludeSystemEventsRegex = "^[^\\$].*";

Java client: 4.0.0 ESDB docker container: tags/oss-v21.10.8

YoEight commented 1 year ago

Thanks @causton81 for reporting that issue.