Completed
Push — master ( 591bf0...c4b659 )
by Edward
01:58
created

ConsulBaseAction   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %
Metric Value
dl 0
loc 13
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A _get_client() 0 7 1
A __init__() 0 3 1
1
from st2actions.runners.pythonrunner import Action
2
3
# http://python-consul.readthedocs.org/en/latest/#
4
import consul
5
6
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