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