Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 3474825

Browse files
committed
- Bumped version to 1.1.3
1 parent f96edff commit 3474825

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ To run this script you will need at least node v0.10, as well as the nomnom pack
3939

4040
# Changelog
4141

42+
## 1.1.3
43+
* Fixed bug where sockets would wait forever to be released (thanks @dplate)
44+
* Fixed bug where the last few documents were not written to target driver (thanks @sjost)
45+
* Fixed bug where null was written to the target driver as first line
46+
4247
## 1.1.2
4348
* Process will now observe available memory and wait for writes to go through before fetching more data (if gc is available).
4449
* Removed check for target files (which was non sense)

drivers/es.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ exports.createTypeMeta = function(opts, metadata, callback) {
3636
port : opts.targetPort,
3737
path : '/' + opts.targetIndex,
3838
method : 'PUT'
39-
}, function(res) {
39+
}, function() {
4040
var typeMapReq = http.request({
4141
host : opts.targetHost,
4242
port : opts.targetPort,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "elasticsearchExporter",
33
"description": "A utility for exporting data from one Elasticsearch cluster to another",
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"author": "Ravi Gairola <mallox@pyxzl.net>",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)