Comparing version 8.3.1 to 8.3.2
CHANGELOG | ||
========= | ||
## 8.3.2 (2021-5-29) | ||
@cmaddalozzo Close unix domain socket after unsuccessful attempts to connect | ||
## 8.3.1 (2021-4-1) | ||
* @dvd-z Fix date_happened to allow usage of numbers | ||
* @bdeitte Bump y18n from 4.0.0 to 4.0.1 | ||
@@ -8,0 +10,0 @@ ## 8.3.0 (2020-12-16) |
@@ -102,4 +102,10 @@ const assert = require('assert'); | ||
const socket = unixDgram.createSocket('unix_dgram'); | ||
socket.connect(udsPath); | ||
try { | ||
socket.connect(udsPath); | ||
} catch (err) { | ||
socket.close(); | ||
throw err; | ||
} | ||
return { | ||
@@ -106,0 +112,0 @@ emit: socket.emit.bind(socket), |
{ | ||
"name": "hot-shots", | ||
"description": "Node.js client for StatsD, DogStatsD, and Telegraf", | ||
"version": "8.3.1", | ||
"version": "8.3.2", | ||
"author": "Steve Ivy", | ||
@@ -6,0 +6,0 @@ "types": "./types.d.ts", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84115
1551