summaryrefslogtreecommitdiff
path: root/clustering/consul_session.py
diff options
context:
space:
mode:
authorMichael Scherer <misc@zarb.org>2016-02-24 12:15:02 +0100
committerMichael Scherer <misc@zarb.org>2016-02-24 12:22:06 +0100
commit05ac6edd457d96ca0f005fe43a537d2f4fb0d936 (patch)
tree578db10cc14daf49bc5f579050c9e9fcf3cccff7 /clustering/consul_session.py
parent9e61b49d5867a57713cb8d4868c9eb1a326c5972 (diff)
downloadansible-modules-extras-05ac6edd457d96ca0f005fe43a537d2f4fb0d936.tar.gz
Rename consul variable to consul_client
Since the module is also named consul, pyflakes emit a warning about it since the variable shadow the module.
Diffstat (limited to 'clustering/consul_session.py')
-rw-r--r--clustering/consul_session.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/clustering/consul_session.py b/clustering/consul_session.py
index 93e5452d..5070c348 100644
--- a/clustering/consul_session.py
+++ b/clustering/consul_session.py
@@ -136,10 +136,10 @@ def lookup_sessions(module):
datacenter = module.params.get('datacenter')
state = module.params.get('state')
- consul = get_consul_api(module)
+ consul_client = get_consul_api(module)
try:
if state == 'list':
- sessions_list = consul.session.list(dc=datacenter)
+ sessions_list = consul_client.session.list(dc=datacenter)
#ditch the index, this can be grabbed from the results
if sessions_list and sessions_list[1]:
sessions_list = sessions_list[1]
@@ -150,7 +150,7 @@ def lookup_sessions(module):
if not node:
module.fail_json(
msg="node name is required to retrieve sessions for node")
- sessions = consul.session.node(node, dc=datacenter)
+ sessions = consul_client.session.node(node, dc=datacenter)
module.exit_json(changed=True,
node=node,
sessions=sessions)
@@ -160,7 +160,7 @@ def lookup_sessions(module):
module.fail_json(
msg="session_id is required to retrieve indvidual session info")
- session_by_id = consul.session.info(session_id, dc=datacenter)
+ session_by_id = consul_client.session.info(session_id, dc=datacenter)
module.exit_json(changed=True,
session_id=session_id,
sessions=session_by_id)
@@ -178,12 +178,12 @@ def update_session(module):
datacenter = module.params.get('datacenter')
node = module.params.get('node')
- consul = get_consul_api(module)
+ consul_client = get_consul_api(module)
changed = True
try:
- session = consul.session.create(
+ session = consul_client.session.create(
name=name,
node=node,
lock_delay=validate_duration('delay', delay),
@@ -207,11 +207,11 @@ def remove_session(module):
module.fail_json(msg="""A session id must be supplied in order to
remove a session.""")
- consul = get_consul_api(module)
+ consul_client = get_consul_api(module)
changed = False
try:
- session = consul.session.destroy(session_id)
+ session = consul_client.session.destroy(session_id)
module.exit_json(changed=True,
session_id=session_id)