Skip to content

Commit

Permalink
MB-34160 Fix cbtransfer from couchstore file to BFD
Browse files Browse the repository at this point in the history
Change-Id: I29a0bbdf4a164690008eed690ac3b9a1b51cafd4
Reviewed-on: http://review.couchbase.org/109161
Tested-by: Build Bot <build@couchbase.com>
Reviewed-by: Patrick Varley <patrick@couchbase.com>
  • Loading branch information
Carlos Gonzalez Betancort committed May 15, 2019
1 parent 30fd06c commit 0407d61
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pump_bfd.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,8 @@ def run(self):
if self.bucket_name() == bucket["name"]:
for node in bucket["nodes"]:
if node["hostname"] == self.node_name():
version = node["version"].split("-")[0]
if 'version' in node:
version = node["version"].split("-")[0]

seqno_map = {}
for i in range(BFD.NUM_VBUCKET):
Expand Down

0 comments on commit 0407d61

Please sign in to comment.