From 4cc5c7e4498b7164ad53976a604afb6a571f0ffa Mon Sep 17 00:00:00 2001 From: "mccasland, trevor (tm2086)" Date: Fri, 2 Mar 2018 12:57:52 -0600 Subject: [PATCH] Fix npm-test: write after end error The npm-test gate currently fails while bundling due to a write after end error. Here are some more details on the error: *snippet of the error[1] *link to sample run[2] I tried a few solutions online and found this[3] to work with how we bundle openstack-health. The release for 1.4.2 has been out for some time so I was curious why it's just now starting to fail but at least this gets the gate passing again. [1]http://paste.openstack.org/show/688811/ [2]http://logs.openstack.org/66/547866/7/check/nodejs-npm-run-test/f21e7b5/ [3]https://github.com/substack/bulkify/issues/18 Change-Id: Id288e68a7b38382d99a1dfb886544f99c0714310 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53c18052..8fc42968 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "browserify-ngannotate": "^0.1.0", "browserify-shim": "^3.8.10", "bulk-require": "^0.2.1", - "bulkify": "^1.1.1", + "bulkify": ">=1.1.1 <=1.2.0", "d3": "^3.5.3", "d3-array": "^1.0.1", "d3-format": "^1.0.2",