From 4d23b7a48b58d1a7f2c0b5e68c44902fc7b3da09 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Mon, 3 May 2021 13:51:38 +0200 Subject: [PATCH] linode_v4 - fixed error message (#2430) (#2433) * fixed error message * added changelog fragment (cherry picked from commit 5064aa8ec6d967e9c6867af9fdeb4496377a2e4d) Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> --- changelogs/fragments/2430-linodev4-error-message.yml | 2 ++ plugins/modules/cloud/linode/linode_v4.py | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 changelogs/fragments/2430-linodev4-error-message.yml diff --git a/changelogs/fragments/2430-linodev4-error-message.yml b/changelogs/fragments/2430-linodev4-error-message.yml new file mode 100644 index 0000000000..3dbfda1b9c --- /dev/null +++ b/changelogs/fragments/2430-linodev4-error-message.yml @@ -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). diff --git a/plugins/modules/cloud/linode/linode_v4.py b/plugins/modules/cloud/linode/linode_v4.py index 0f1133bac0..fcf3725bfc 100644 --- a/plugins/modules/cloud/linode/linode_v4.py +++ b/plugins/modules/cloud/linode/linode_v4.py @@ -208,9 +208,8 @@ def create_linode(module, client, **kwargs): else: return response._raw_json except TypeError: - module.fail_json(msg='Unable to parse Linode instance creation' - ' response. Please raise a bug against this' - ' module on https://github.com/ansible/ansible/issues' + module.fail_json(msg='Unable to parse Linode instance creation response. Please raise a bug against this' + ' module on https://github.com/ansible-collections/community.general/issues' )