diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ce96bc3c..79076f2d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Fixed a bug that caused invalid param/type errors to not be reported properly, in the browser builds that use promises. - added the cat.threadPool to the master/1.0/1.x apis - Enabled Basic auth in the Angular connector -- Thanks @jeff-french! +- Fixed a bug that was preventing index requests (and any other POST/PUT request) from using connections in the connection pool. ## 1.4 (Jan 30 2014) - The trace log messages will now diaplay the actual host connected to (without auth info) unless they are being written to a bash script diff --git a/scripts/generate/logs/index.js b/scripts/generate/logs/index.js index 0a061aa0f..fdff91111 100644 --- a/scripts/generate/logs/index.js +++ b/scripts/generate/logs/index.js @@ -21,7 +21,6 @@ var argv = require('optimist') var es = require('../../../src/elasticsearch'); var async = require('async'); -var path = require('path'); var moment = require('moment'); var makeSamples = require('./samples').make;