Subversion Repositories SmartDukaan

Rev

Rev 621 | Rev 1248 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 621 Rev 755
Line 17... Line 17...
17
 
17
 
18
def main():
18
def main():
19
    #get the config client
19
    #get the config client
20
    try:
20
    try:
21
        config_client = ConfigClient()
21
        config_client = ConfigClient()
22
        host_name = config_client.get_property('helper_service_hostname')
22
        host_name = config_client.get_property('helper_service_server_host')
23
        port = config_client.get_property('helper_service_port')
23
        port = config_client.get_property('helper_service_server_port')
24
    except:
24
    except:
25
        #error while spawning the config server
25
        #error while spawning the config server
26
        host_name = 'localhost'
26
        host_name = 'localhost'
27
        port = '9008'
27
        port = '9008'
28
    
28