Skip to content

Commit

Permalink
UPD(issue #12) - Updated main commands for Java QPID clients
Browse files Browse the repository at this point in the history
  • Loading branch information
fgiorgetti committed Jan 31, 2019
1 parent 8eb59b3 commit 8c780ee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, stdout: bool=False, stderr: bool=False,
self.connection = JavaConnectionOptionsCommon()

def main_command(self) -> list:
return ['java', '-jar', 'cli-qpid.jar', 'connector']
return ['cli-qpid-connector']


class JavaReceiverClientCommand(ReceiverClientCommand):
Expand All @@ -40,7 +40,7 @@ def __init__(self, stdout: bool=False, stderr: bool=False,
self.connection = JavaConnectionOptionsCommon()

def main_command(self) -> list:
return ['java', '-jar', 'cli-qpid.jar', 'receiver']
return ['cli-qpid-receiver']


class JavaSenderClientCommand(SenderClientCommand):
Expand All @@ -57,4 +57,4 @@ def __init__(self, stdout: bool=False, stderr: bool=False,
self.connection = JavaConnectionOptionsCommon()

def main_command(self) -> list:
return ['java', '-jar', 'cli-qpid.jar', 'sender']
return ['cli-qpid-sender']

0 comments on commit 8c780ee

Please sign in to comment.