Skip to content

Commit

Permalink
Merge branch 'feature/servicedownaction' into release/0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Vinicius G. Cesario committed Aug 25, 2015
2 parents 116fb5b + 497dfd8 commit 5bc7096
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions networkapiclient/Pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def list_all_by_reqvip(self, id_vip, pagination):

def inserir(self, identifier, default_port, environment, balancing, healthcheck_type, healthcheck_expect,
healthcheck_request, old_healthcheck_id, maxcom, ip_list_full, nome_equips, id_equips, priorities,
weight, ports_reals, servicedownaction='none'):
weight, ports_reals, servicedownaction=None):

uri = "api/pools/insert/"

Expand Down Expand Up @@ -128,7 +128,7 @@ def inserir(self, identifier, default_port, environment, balancing, healthcheck_

def save(self, id, identifier, default_port, environment, balancing, healthcheck_type, healthcheck_expect,
healthcheck_request, maxcom, ip_list_full, nome_equips, id_equips, priorities,
weight, ports_reals, id_pool_member, servicedownaction='none'):
weight, ports_reals, id_pool_member, servicedownaction=None):

uri = "api/pools/save/"

Expand Down Expand Up @@ -172,7 +172,7 @@ def save_reals(self, id_server_pool, ip_list_full, nome_equips, id_equips, prior
return self.post(uri, data=data)

def update(self, id_server_pool, default_port, balancing, healthcheck_type, healthcheck_expect, healthcheck_request,
old_healthcheck_id, maxcom, ip_list_full, nome_equips, id_equips, priorities, weight, ports_reals, servicedownaction='none'):
old_healthcheck_id, maxcom, ip_list_full, nome_equips, id_equips, priorities, weight, ports_reals, servicedownaction=None):

uri = "api/pools/edit/"

Expand Down

0 comments on commit 5bc7096

Please sign in to comment.