Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/hatRiot/clusterd into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
hatRiot committed May 13, 2014
2 parents 706db0e + e57c1b9 commit d8e0a6e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/module/invoke_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def invoke_axis2(fingerengine, fingerprint, deployer):
fingerengine.options.ip, fingerprint.port,
dfile)

if fingerprint.version in ['1.4', '1.5']:
if fingerprint.version not in ['1.6']:
# versions < 1.6 require an explicit invocation of run
url += '/run'

Expand Down
2 changes: 1 addition & 1 deletion src/platform/axis2/deployers/service_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


title = AINTERFACES.DSR
versions = ['1.4', '1.5', '1.6']
versions = ['1.2', '1.3', '1.4', '1.5', '1.6']
def deploy(fingerengine, fingerprint):
""" Upload a service via the administrative interface
"""
Expand Down
7 changes: 7 additions & 0 deletions src/platform/axis2/fingerprints/AX12.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from src.platform.axis2.interfaces import DefaultServer

class FPrint(DefaultServer):

def __init__(self):
super(FPrint, self).__init__()
self.version = '1.2'
7 changes: 7 additions & 0 deletions src/platform/axis2/fingerprints/AX13.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from src.platform.axis2.interfaces import DefaultServer

class FPrint(DefaultServer):

def __init__(self):
super(FPrint, self).__init__()
self.version = '1.3'

0 comments on commit d8e0a6e

Please sign in to comment.