Completed
Pull Request — master (#407)
by Edward
02:14
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
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