Doug Gish
Doug Gish
I found the official docker image for redoc here: https://hub.docker.com/r/redocly/redoc. However, I was not able to find an official docker image for redoc-cli (although I did find a Dockerfile for...
We are having to increase the size of the payload column to fit some of our larger messages. We are creating the payload column like this: `payload NVARCHAR(MAX) NOT NULL`...
This part of the mssql database setup script: ```SQL CREATE TABLE eventuate.received_messages ( consumer_id VARCHAR(767), message_id VARCHAR(767), PRIMARY KEY(consumer_id, message_id), creation_time BIGINT ); ``` Results in the following warning when...
I think the equivalent to a varchar column in MySQL/PostgreSQL is an nvarchar column in MSSQL, not varchar. In MSSQL, nvarchar is required for full unicode support. I'm especially concerned...
We would like to use ISO-8601 format for the DATE header, e.g. 2019-02-28T23:02:18+00:00
I noticed that the C# port of LeaderElectionSupport has a mistake when comparing it with the original Java. On this line: https://github.com/shayhatsor/zookeeper/blob/0874166177fbafc47359d7b1cfe7bc0ba99b4a57/src/csharp/src/ZooKeeperNetEx.Recipes/leader/LeaderElectionSupport.cs#L349, the C# port is comparing an event **type**...
The instructions to connect to an Azure Event Grid MQTT broker using an MQTT client such as MQTTX [here](https://learn.microsoft.com/en-us/azure/event-grid/mqtt-publish-and-subscribe-portal#connecting-the-clients-to-the-eg-namespace-using-mqttx-app) say to configure a "Client Certificate File" and a "Client key...
Should consider following the guidance documented here: https://docs.microsoft.com/en-us/dotnet/core/extensions/options-library-authors
https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/tutorials/upgrade-to-nullable-references
Currently the dotnet library supports domain events, but not commands. It would be nice to add command support.