Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Commit

Permalink
bulk_actions
Browse files Browse the repository at this point in the history
  • Loading branch information
childe committed May 3, 2017
1 parent 9218e6a commit c676fad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private void initESClient() throws NumberFormatException {
}
});

int bulkActions = config.containsKey("bulk_action") ? (int) config.get("bulk_action") : BULKACTION;
int bulkActions = config.containsKey("bulk_actions") ? (int) config.get("bulk_actions") : BULKACTION;
int bulkSize = config.containsKey("bulk_size") ? (int) config.get("bulk_size") : BULKSIZE;
int flushInterval = config.containsKey("flush_interval") ? (int) config.get("flush_interval") : FLUSHINTERVAL;
int concurrentRequests = config.containsKey("concurrent_requests") ? (int) config.get("concurrent_requests") : CONCURRENTREQSIZE;
Expand Down

0 comments on commit c676fad

Please sign in to comment.