8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdb0bee commit 537d86dCopy full SHA for 537d86d
src/metrics/dogstatsd.ts
@@ -19,9 +19,9 @@ export class LambdaDogStatsD {
19
constructor() {
20
this.socket = dgram.createSocket(LambdaDogStatsD.SOCKET_TYPE);
21
// Bind to a local port so we can set the socket’s send buffer size
22
- this.socket.bind(0, () => {
23
- LambdaDogStatsD.ensureMinSendBufferSize(this.socket);
24
- });
+ // this.socket.bind(0, () => {
+ // LambdaDogStatsD.ensureMinSendBufferSize(this.socket);
+ // });
25
}
26
27
private static ensureMinSendBufferSize(sock: dgram.Socket): void {
0 commit comments