1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixing typo in bigip_monitors Correcting set_template_int_property to set_template_integer_property

This commit is contained in:
mxpt user 2016-03-11 13:16:58 -08:00 committed by Matt Clay
parent 2afecc7198
commit 0798bfe2dc
2 changed files with 2 additions and 2 deletions

View file

@ -250,7 +250,7 @@ def check_integer_property(api, monitor, int_property):
def set_integer_property(api, monitor, int_property):
api.LocalLB.Monitor.set_template_int_property(template_names=[monitor], values=[int_property])
api.LocalLB.Monitor.set_template_integer_property(template_names=[monitor], values=[int_property])
def update_monitor_properties(api, module, monitor, template_string_properties, template_integer_properties):

View file

@ -269,7 +269,7 @@ def check_integer_property(api, monitor, int_property):
def set_integer_property(api, monitor, int_property):
api.LocalLB.Monitor.set_template_int_property(template_names=[monitor], values=[int_property])
api.LocalLB.Monitor.set_template_integer_property(template_names=[monitor], values=[int_property])
def update_monitor_properties(api, module, monitor, template_string_properties, template_integer_properties):