Danilo Spinelli
Danilo Spinelli
lgtm but we keep this one on-hold since we have to get some feedback from the legal office.
lgtm so far but is has conflcts with master. a question: why we need a mutex to delete the fiscal code from the set here ? ```ts private async resetOperation(fiscalCode:...
@cloudify this lgtm. @BurnedMarshal added a mutex since duplicating the redis client for *every* update is an expensive ops (it opens a new socket every time). now the client waits...
@FDiskas openapi-typescript is a good project if you don't need runtime validation and you trust the backend to always serve compliant requests (in all other cases typings won't reflect payload)....
Massimo is an excellent tool. The response validation happens in the Node.js client using AJV, which is very solid. However, I haven't been able to produce a _frontend_ client with...
Same issue here. > It looks like the SDK is not compatible with @azure/functions 4.3.0's types. Is there any plan to make the AI sdk compatible with Azure Functions v4...
We use it like this ```ts import { AzureFunctionsInstrumentation } from "@azure/functions-opentelemetry-instrumentation"; import { metrics, trace } from "@opentelemetry/api"; import { registerInstrumentations } from "@opentelemetry/instrumentation"; import { UndiciInstrumentation } from...
I agree that overriding global agent options causes unexpected behavior for NodeJS devs so `getNodeRequestOptions` should honor them. This is expecially true when you have to use node-fetch aside other...
Update: I’ve reviewed the sampling algorithm used in donet (Azure Function Host), and it invokes the DJB2 hashing function as follows: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/Internals/ApplicationInsightsSampler.cs#L57 while in the JS implementation it looks like...