diff options
author | Iury Gregory Melo Ferreira <iurygregory@gmail.com> | 2021-09-02 22:02:09 +0200 |
---|---|---|
committer | Iury Gregory Melo Ferreira <iurygregory@gmail.com> | 2021-09-02 22:02:09 +0200 |
commit | b7ad3f51a1581f1c5a5520ad18fa847937302469 (patch) | |
tree | 2fc34ebd5911b82845bfaad346743bf9e519c192 /ironic/drivers/modules/redfish | |
parent | df92f8089eef5925bd827ea2705b40916633fbca (diff) | |
download | ironic-b7ad3f51a1581f1c5a5520ad18fa847937302469.tar.gz |
Fix typo and add subscription docs
This commit fix a typo in the destination parameter
in tests and in doc, also including documentation
abou the subscription methods available via
vendor passthru.
Change-Id: Ifa82562d2ce8f34bd90dc5897a3b83fe9e8eb88b
Diffstat (limited to 'ironic/drivers/modules/redfish')
-rw-r--r-- | ironic/drivers/modules/redfish/vendor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/modules/redfish/vendor.py b/ironic/drivers/modules/redfish/vendor.py index 056dbe90a..fa94b0797 100644 --- a/ironic/drivers/modules/redfish/vendor.py +++ b/ironic/drivers/modules/redfish/vendor.py @@ -161,7 +161,7 @@ class RedfishVendorPassthru(base.VendorInterface): @base.passthru(['POST'], async_call=False, description=_("Creates a subscription on a node. " "Required argument: a dictionary of " - "{'destination': 'destination_url'}")) + "{'Destination': 'destination_url'}")) def create_subscription(self, task, **kwargs): """Creates a subscription. |