Skip to content

Commit

Permalink
Specify command_type explicitly for DbTapQueryCommand. This is needed…
Browse files Browse the repository at this point in the history
… for CompositeCommand to work properly.
  • Loading branch information
Rohit Agarwal committed Jun 3, 2014
1 parent 7d7ab11 commit f09e5b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qds_sdk/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,9 @@ def parse(cls, args):
except OptionParsingExit as e:
return None

return vars(options)
v = vars(options)
v["command_type"] = "DbTapQueryCommand"
return v

def _read_iteratively(key_instance, fp, delim):
key_instance.open_read()
Expand Down

0 comments on commit f09e5b1

Please sign in to comment.