mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
E501 fixes (#22879)
This commit is contained in:
@@ -264,7 +264,9 @@ def main():
|
||||
# - in case ports are missing from the ones specified by the user
|
||||
# - in case ports are missing from those on the device
|
||||
# - in case we are change the status of a server
|
||||
if port_needs_update(defined_ports, slb_server_ports) or port_needs_update(slb_server_ports, defined_ports) or status_needs_update(current_status, axapi_enabled_disabled(slb_server_status)):
|
||||
if (port_needs_update(defined_ports, slb_server_ports) or
|
||||
port_needs_update(slb_server_ports, defined_ports) or
|
||||
status_needs_update(current_status, axapi_enabled_disabled(slb_server_status))):
|
||||
result = axapi_call(module, session_url + '&method=slb.server.update', json.dumps(json_post))
|
||||
if axapi_failure(result):
|
||||
module.fail_json(msg="failed to update the server: %s" % result['response']['err']['msg'])
|
||||
|
||||
@@ -65,7 +65,18 @@ options:
|
||||
required: false
|
||||
default: round-robin
|
||||
aliases: ['method']
|
||||
choices: ['round-robin', 'weighted-rr', 'least-connection', 'weighted-least-connection', 'service-least-connection', 'service-weighted-least-connection', 'fastest-response', 'least-request', 'round-robin-strict', 'src-ip-only-hash', 'src-ip-hash']
|
||||
choices:
|
||||
- 'round-robin'
|
||||
- 'weighted-rr'
|
||||
- 'least-connection'
|
||||
- 'weighted-least-connection'
|
||||
- 'service-least-connection'
|
||||
- 'service-weighted-least-connection'
|
||||
- 'fastest-response'
|
||||
- 'least-request'
|
||||
- 'round-robin-strict'
|
||||
- 'src-ip-only-hash'
|
||||
- 'src-ip-hash'
|
||||
servers:
|
||||
description:
|
||||
- A list of servers to add to the service group. Each list item should be a
|
||||
|
||||
Reference in New Issue
Block a user