Hacinto Moen

Results 14 comments of Hacinto Moen

@ealsur , any plans to implement before the October 2022 deadline mentioned above? If not, so we can plan our own retry mechanism (queue etc). Thanks.

@ealsur , thanks for the feedback. Infinite or none won't work in our environment unfortunately. We piggybacked off [dead-letter-queues](https://docs.microsoft.com/en-us/azure/cosmos-db/sql/change-feed-processor?tabs=dotnet#error-handling) before and removed the functionality when we found out about the...

@ealsur , on this thread https://github.com/Azure/azure-functions-dotnet-worker/issues/832#issuecomment-1072545934, @kshyju mentioned the ExponentialBackoffRetry only works(ed) for in-proc function apps.

The issue https://github.com/Azure/azure-functions-dotnet-worker/issues/832, was opened by someone looking specifically for retry logic for CosmosDBTrigger and @kshyju offered the linked comment as the solution. That issue should be updated to reflect...

@kshyju , thanks for your response. The retry behavior you depict above is/will be permanent in the runtime for out-of-proc functions? I opened this issue since as stated above early...

@dextermb , thanks for the example https://github.com/radix-ui/primitives/issues/1569#issuecomment-1434801848. Following resets controlled select input to its default value. Using react-hook-form. ```ts const fieldValue = form.watch('fieldName') {/* rest of select */} ```

After reading the following, having _expires epoch_ here makes sense for revalidating the actual page using ETags: - https://developers.google.com/speed/docs/insights/LeverageBrowserCaching - http://blog.marek.sapota.org/article/2012/08/17/web-browsers-and-cache-revalidation.html In your example, I see _expires epoch_ does affect...

@nicoculotta , this fix https://github.com/shadcn-ui/ui/issues/910#issuecomment-1770255810 remedies the mobile phone issue.

@vijaystroup , did you find a solution?

Here's my default.vcl contents: backend default { .host = "127.0.0.1"; .port = "8001"; .connect_timeout = 600s; .first_byte_timeout = 300s; .between_bytes_timeout = 10s; } sub vcl_recv { if (req.request != "GET"...