Jochen Mehlhorn
Jochen Mehlhorn
Check this out: https://github.com/bastienwirtz/homer/issues/165 Not 100% what you are suggesting, but with link items based on your tags, it is close ;)
Well, that's what I tried, too... But 1) In this (htpcbeginner) repo those secrets are used with CLIENT_ID/CLIENT_SECRET not with _FILE suffix. See https://github.com/htpcBeginner/docker-traefik/blob/09fe127690eadadaddea49689714dac0ccb20ba0/docker-compose-t2.yml#L255 Thats why I tried that after...
Hi, I'm also in the same boat. As far as I understand from this thread turf buffers in general are very inaccurate and therefore basically unusable. A couple of questions:...
Had the same issue but the workaround did not work because the 2 host names did not come from the same domain. One host name was the cloudflare domain and...
> OK, you just have some syntax issues with the traefik labels. > Try this: > > ```shell > traefik.http.routers.service.rule=Host(`host1.example.com`) || Host(`host2.example.com`) || Host(`host3.example.com`) > ``` FYI, thats not an...
You're right. I updated the code to handle that case.
After implementing a simple reconnect "strategy" that creates a new hub after a disconnect, I saw that this component produces 100s of error messages in chrome console if the signalR...
So, this thing seems to be dead, but answering to myself: It is possible using amqp filter sets. In other AMQP implementations this is documented better and I was able...
@ewertons this seems to be since #383 Is there maybe something missing in the receiver sample like ACKing received messages?
when changing the line `link_set_rcv_settle_mode(link, receiver_settle_mode_first);` to `link_set_rcv_settle_mode(link, receiver_settle_mode_second);` it will continue to get messages.. According to https://github.com/Azure/azure-uamqp-python/blob/2d79b9c3544080cc524c7eec1b672a926d90bb53/uamqp/constants.py#L122 "first" is RECEIVEANDDELETE "second" is PEEKLOCK. And according to https://learn.microsoft.com/en-us/azure/service-bus-messaging/message-transfers-locks-settlement#settling-receive-operations _Peek-Lock_ means...