If you specify a profile, you need to have key, keyid, and region set within
the profile. If region is set outside of the profile group, it is ignored,
and a default region is used.
This pull request updates the docs to model this usage correctly.
This fixes the file.serialize state on windows.
Currently, it fails on the first run (with "Failed to change group to Administrators" and succeeds on runs afterwards.
Previously list_updates was returning a formatted string including
tabs and newlines. This is no good for data consumtion and needed
to be changed to tabular data. We can now return a proper object
after consuming specific fields from the COM. Previously, the only
field included in the formatted return was description. Several
more, though not all, have been added.
This also adds a field parameter with which you can specify fields
for return. This parameter is superceded by the verbose parameter.
The documentation on the function has been updated to reflect
these changes.
The references to Harry Potter (as much as it pains me to mention
it) have been removed from the modified functions and methods.
The amount of those references in contrib was out of control. I'm
glad to see it making its way out.
Last, no changes have been made otherwise, so the download and
installation should not be affected.
When I wrote dockerng, I was scraping the API response for the ID of the
image specified in the docker 'push' command. This information is no
longer present in the Docker Remote API response, which makes the
function think that the push failed when it did not.
This commit removes the ``Id`` and ``Image`` keys from the return
dictionary, as they can no longer reliably be determined from the API
response without it being some sort of hack that will no doubt be broken
the next time Docker decides to change their API.
Not only that, but the status message used to detect a pushed or
already-present layer has also been changed, which necessitated a fix in
``_push_status()``.
This also resolves#29994 by allowing the user to push all tags for a
given repo by omitting the tag.
The gluster cli has the option to produce xml output from most every
command, and to avoid pausing for questions when being run in script
mode. Make use of that capability and avoid scraping text output that is
often subject to change between versions.
This should help future-proof this module as any changes to the xml
output should be automatically integrated.
As part of this change, I added a glusterfs.info function and added the
force keywords to volume start and volume stop.
Fixes#30051