mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* fixed error message
* added changelog fragment
(cherry picked from commit 5064aa8ec6
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
020b47a1a9
commit
4d23b7a48b
2 changed files with 4 additions and 3 deletions
2
changelogs/fragments/2430-linodev4-error-message.yml
Normal file
2
changelogs/fragments/2430-linodev4-error-message.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- linode_v4 - changed the error message to point to the correct bugtracker URL (https://github.com/ansible-collections/community.general/pull/2430).
|
|
@ -208,9 +208,8 @@ def create_linode(module, client, **kwargs):
|
||||||
else:
|
else:
|
||||||
return response._raw_json
|
return response._raw_json
|
||||||
except TypeError:
|
except TypeError:
|
||||||
module.fail_json(msg='Unable to parse Linode instance creation'
|
module.fail_json(msg='Unable to parse Linode instance creation response. Please raise a bug against this'
|
||||||
' response. Please raise a bug against this'
|
' module on https://github.com/ansible-collections/community.general/issues'
|
||||||
' module on https://github.com/ansible/ansible/issues'
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue