8000 temp try to get tests to pass · DataDog/datadog-lambda-js@537d86d · GitHub
[go: up one dir, main page]

Skip to content

Commit 537d86d

Browse files
committed
temp try to get tests to pass
1 parent fdb0bee commit 537d86d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/metrics/dogstatsd.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ export class LambdaDogStatsD {
1919
constructor() {
2020
this.socket = dgram.createSocket(LambdaDogStatsD.SOCKET_TYPE);
2121
// 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-
});
22+
// this.socket.bind(0, () => {
23+
// LambdaDogStatsD.ensureMinSendBufferSize(this.socket);
24+
// });
2525
}
2626

2727
private static ensureMinSendBufferSize(sock: dgram.Socket): void {

0 commit comments

Comments
 (0)
0