mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-04-07 10:43:03 +00:00
Fixes.
This commit is contained in:
parent
08960a9317
commit
3b027236ac
@ -710,8 +710,8 @@ class ImageManager(DockerBaseClass):
|
|||||||
self.client._get(
|
self.client._get(
|
||||||
self.client._url("/images/{0}/get", image_name), stream=True
|
self.client._url("/images/{0}/get", image_name), stream=True
|
||||||
),
|
),
|
||||||
DEFAULT_DATA_CHUNK_SIZE,
|
chunk_size=DEFAULT_DATA_CHUNK_SIZE,
|
||||||
False,
|
decode=False,
|
||||||
)
|
)
|
||||||
except Exception as exc: # pylint: disable=broad-exception-caught
|
except Exception as exc: # pylint: disable=broad-exception-caught
|
||||||
self.fail(f"Error getting image {image_name} - {exc}")
|
self.fail(f"Error getting image {image_name} - {exc}")
|
||||||
|
|||||||
@ -202,8 +202,8 @@ class ImageExportManager(DockerBaseClass):
|
|||||||
self.client._get(
|
self.client._get(
|
||||||
self.client._url("/images/{0}/get", image_names[0]), stream=True
|
self.client._url("/images/{0}/get", image_names[0]), stream=True
|
||||||
),
|
),
|
||||||
DEFAULT_DATA_CHUNK_SIZE,
|
chunk_size=DEFAULT_DATA_CHUNK_SIZE,
|
||||||
False,
|
decode=False,
|
||||||
)
|
)
|
||||||
except Exception as exc: # pylint: disable=broad-exception-caught
|
except Exception as exc: # pylint: disable=broad-exception-caught
|
||||||
self.fail(f"Error getting image {image_names[0]} - {exc}")
|
self.fail(f"Error getting image {image_names[0]} - {exc}")
|
||||||
@ -216,8 +216,8 @@ class ImageExportManager(DockerBaseClass):
|
|||||||
stream=True,
|
stream=True,
|
||||||
params={"names": image_names},
|
params={"names": image_names},
|
||||||
),
|
),
|
||||||
DEFAULT_DATA_CHUNK_SIZE,
|
chunk_size=DEFAULT_DATA_CHUNK_SIZE,
|
||||||
False,
|
decode=False,
|
||||||
)
|
)
|
||||||
except Exception as exc: # pylint: disable=broad-exception-caught
|
except Exception as exc: # pylint: disable=broad-exception-caught
|
||||||
self.fail(f"Error getting images {image_names_str} - {exc}")
|
self.fail(f"Error getting images {image_names_str} - {exc}")
|
||||||
|
|||||||
@ -1 +1,3 @@
|
|||||||
|
plugins/module_utils/_api/transport/sshconn.py no-assert
|
||||||
|
plugins/module_utils/_platform.py no-assert
|
||||||
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
||||||
|
|||||||
@ -1 +1,3 @@
|
|||||||
|
plugins/module_utils/_api/transport/sshconn.py no-assert
|
||||||
|
plugins/module_utils/_platform.py no-assert
|
||||||
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
||||||
|
|||||||
@ -1 +1,3 @@
|
|||||||
|
plugins/module_utils/_api/transport/sshconn.py no-assert
|
||||||
|
plugins/module_utils/_platform.py no-assert
|
||||||
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
||||||
|
|||||||
@ -1 +1,3 @@
|
|||||||
|
plugins/module_utils/_api/transport/sshconn.py no-assert
|
||||||
|
plugins/module_utils/_platform.py no-assert
|
||||||
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
||||||
|
|||||||
@ -1 +1,3 @@
|
|||||||
|
plugins/module_utils/_api/transport/sshconn.py no-assert
|
||||||
|
plugins/module_utils/_platform.py no-assert
|
||||||
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
plugins/modules/docker_container_copy_into.py validate-modules:undocumented-parameter # _max_file_size_for_diff is used by the action plugin
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user