Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
1 | from st2actions.runners.pythonrunner import Action |
||
7 | class ConsulBaseAction(Action): |
||
8 | |||
9 | def __init__(self, config): |
||
10 | super(ConsulBaseAction, self).__init__(config) |
||
11 | self.consul = self._get_client() |
||
12 | |||
13 | def _get_client(self): |
||
14 | host = self.config['host'] |
||
15 | port = self.config['port'] |
||
16 | token = self.config['token'] |
||
17 | |||
18 | client = consul.Consul(host, port, token) |
||
19 | return client |
||
20 |