pkoelle
pkoelle
Here is the configuration we are using to run the EventStoreDB server: ``` services: device-eventstore: container_name: device-eventstore image: eventstore/eventstore:latest healthcheck: # this is not an error disable: true ports: -...
- The issue does not happen consistently in our environment, just sometimes - Our event data is in JSON format. Or what information you need about the data? - We...
- When we faced issues with the certificates, we usually got a different strack trace - Therefore, I think the insecure mode will not help
- Our client directly connects to the EventStoreDB - Our client snippet is: ``` private EventStoreClient _eventStoreClient; async Task IEventStoreReadConnection.SubscribeToEventsGrpc( string streamId, long nextEvent, Action onEventsAppeared, Action onSubscriptionDropped) { var...
- The `onEventsAppeared([TranslatedGrpc(resolvedEvent)])` is the action which is executed when a new event appears within the active subscription to a stream of our EventStoreDB - When a new event appears...
- The issue is happening intermittently - Currently, I have no indications under which specific conditions the issue is occurring