#ontap_rest_cli transfering_time_out
1 messages · Page 1 of 1 (latest)
I have not seen that parameter before. Can you provide an example task that used to work?
- name: Warten bis Resync durch ist netapp.ontap.na_ontap_rest_cli: command: "snapmirror" hostname: "{{ destination_netapp_fqdn }}" https: true params: destination-path: "{{ destination_path }}" fields: state,status password: "{{ destination_netapp_password }}" transfering_time_out: 86400 use_rest: always username: "{{ destination_netapp_username }}" validate_certs: false verb: GET delegate_to: localhost register: _snapmirror_infos until: _snapmirror_infos.msg.records.0.state == 'snapmirrored' and _snapmirror_infos.msg.records.0.status == 'idle' delay: 10 retries: 8640 # einen Tag lang
Maybe it has never worked. My collegue that added this a month ago is in holiday. I will ask him.
But please double check on yoour side.
Could it be that "transferring" is misspelled in your playbook?
There has never been an parameter like that in the module. The list of parameters can be found in the documentation.