Andreas Dirnberger

Results 134 comments of Andreas Dirnberger

would resolve https://github.com/rajanadar/VaultSharp/issues/342

It got already implemented [see](https://github.com/storj/edge/blob/82d843c4a692e511ef10611042743aed5c205447/pkg/linksharing/sharing/present.go#L188) But there is a bug when using it on custom domains. If a custom domain is used then they still generate [link.storjshare.io](http://link.storjshare.io/) url’s to a...

elastic ent. search 8.15.1 has a dependency to this issue with the source connector zendesk and maybe others.

A oversized slug can be first be murmur hashed, then trimmed to max-length minus 3 characters and appended with the hex number of the first hex-byte of the hash "-xx"

+1 rebalancing wih the include of credit balance would be good. I would already be happy if an EC2 container instance would be drained when it has low credit balance....

I would already be happy if an EC2 container instance would be drained when it has a low credit balance and activated on a specific higher limit. The autoscale feature...

Near all .net HashAlgorithm are not thread-safe. best create one instance for each execution or loop

Can I clarify the push monitor behavior in this example and an other one. ## Example 1 Parameters: - the backup script requires normally less then 10min to run and...

I am using in the ordered consumer the fetch operation to push the messages into a channel. Channels can/should be created in two options: Fan-In or Fin-Out ```csharp //Fan-Out Channel...

The channel is created with SingleWriter=true, SingleReader=false [see ](https://github.com/nats-io/nats.net/blob/601e51e078d43fe4a6caba52ebb26b33a17b28f4/src/NATS.Client.Core/NatsConnection.cs#L260) But the `IAsyncEnumerator` of `consumer.ConsumeAsync` assumes a sequential processing. To use a channel with SingleWriter=true, SingleReader=true would be ideal here.