Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • perun/perun-proxyidp/perun-proxy-utils
1 result
Show changes
Commits on Source (3)
## [1.8.4](https://gitlab.ics.muni.cz/perun-proxy-aai/python/perun-proxy-utils/compare/v1.8.3...v1.8.4) (2023-08-07)
### Bug Fixes
* containers argument format in check_docker probe ([987ab12](https://gitlab.ics.muni.cz/perun-proxy-aai/python/perun-proxy-utils/commit/987ab12a833f1e53f026e0de8103aa5dbb6c47db))
## [1.8.3](https://gitlab.ics.muni.cz/perun-proxy-aai/python/perun-proxy-utils/compare/v1.8.2...v1.8.3) (2023-08-06)
......
......@@ -29,7 +29,8 @@ def get_args():
"-c",
"--containers",
required=True,
help='list of container names to check in following format: "[cont1, cont2]"',
help="list of container names to check in following"
"format: '['cont1', 'cont2']'",
)
return parser.parse_args()
......@@ -38,6 +39,7 @@ def get_args():
def main():
args = get_args()
containers_list = args.containers.replace(" ", "").strip("[]").split(",")
containers_list = [container_name.strip("'") for container_name in containers_list]
containers_status = get_docker_states(containers_list)
status = 0
......
[metadata]
version = 1.8.3
version = 1.8.4
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
......