Added action Reload
parent
630fc7b102
commit
10d897a5dd
|
@ -647,6 +647,14 @@ class Manager(object):
|
|||
response = self.send_action(cdict)
|
||||
return response
|
||||
|
||||
def reload(self, module):
|
||||
""" Reloads config for a given module """
|
||||
|
||||
cdict = {'Action': 'Reload'}
|
||||
cdict['Module'] = module
|
||||
response = self.send_action(cdict)
|
||||
return response
|
||||
|
||||
|
||||
class ManagerException(Exception):
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue