You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if list_need_update(module.params['source_pool_list'], data['schedule-pool-list']):
data['schedule-pool-list'] = list_to_str(
module.params['source_pool_list'])
res = True
using 'schedule-pool-list' should be replaced with 'source-pool-list' hence above condition shall become:
if list_need_update(module.params['source_pool_list'], data['source-pool-list']):
data['source-pool-list'] = list_to_str(
module.params['source_pool_list'])
res = True
In our project to properly interact with FortiADC device updates we are manually change those lines in the module.
The text was updated successfully, but these errors were encountered:
Condition in virtual server python part of module (lines 323-326) is not correct and should be fixed:
https://github.com/fortinet-ansible-dev/ansible-galaxy-fortiadc-collection/blob/galaxy/1.0.1/plugins/modules/fadcos_virtual_server.py#L323
There is condition evaluated:
using 'schedule-pool-list' should be replaced with 'source-pool-list' hence above condition shall become:
In our project to properly interact with FortiADC device updates we are manually change those lines in the module.
The text was updated successfully, but these errors were encountered: