Skip to content

Commit

Permalink
Fixing a typo in txes.elasticsearch.
Browse files Browse the repository at this point in the history
buldData -> bulkData.
  • Loading branch information
habnabit committed Feb 10, 2013
1 parent 6dd6592 commit f6717b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txes/elasticsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def forceBulk(self):
if not len(self.bulkData):
return defer.succeed(None)

data = '\n'.join(self.buldData)
data = '\n'.join(self.bulkData)
d = self._sendRequest("POST", "/_bulk", body=data)
self.bulkData = []
return d
Expand Down

0 comments on commit f6717b5

Please sign in to comment.