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
Select Git revision
  • dev
  • github/fork/vyskocilpavel/auth_active_probe_config
  • main
  • probes_script
  • renovate/commitlint
  • renovate/docker-7.x
  • renovate/lock-file-maintenance
  • xpavlic/run_probes_jpmu_test
  • v1.0.0
  • v1.1.0
  • v1.10.0
  • v1.11.0
  • v1.2.0
  • v1.3.0
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.7.1
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.8.4
  • v1.8.5
  • v1.9.0
  • v1.9.1
  • v1.9.2
  • v2.0.0
  • v2.1.0
  • v2.2.0
  • v2.2.1
  • v2.2.2
  • v2.3.0
  • v2.4.0
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.5.3
  • v2.5.4
  • v2.6.0
  • v2.7.0
  • v2.7.1
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v3.0.0
  • v3.1.0
48 results

Target

Select target project
  • perun/perun-proxyidp/perun-proxy-utils
1 result
Select Git revision
  • dev
  • github/fork/vyskocilpavel/auth_active_probe_config
  • main
  • probes_script
  • renovate/commitlint
  • renovate/docker-7.x
  • renovate/lock-file-maintenance
  • xpavlic/run_probes_jpmu_test
  • v1.0.0
  • v1.1.0
  • v1.10.0
  • v1.11.0
  • v1.2.0
  • v1.3.0
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.7.1
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.8.4
  • v1.8.5
  • v1.9.0
  • v1.9.1
  • v1.9.2
  • v2.0.0
  • v2.1.0
  • v2.2.0
  • v2.2.1
  • v2.2.2
  • v2.3.0
  • v2.4.0
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.5.3
  • v2.5.4
  • v2.6.0
  • v2.7.0
  • v2.7.1
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v3.0.0
  • v3.1.0
48 results
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) ## [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(): ...@@ -29,7 +29,8 @@ def get_args():
"-c", "-c",
"--containers", "--containers",
required=True, 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() return parser.parse_args()
...@@ -38,6 +39,7 @@ def get_args(): ...@@ -38,6 +39,7 @@ def get_args():
def main(): def main():
args = get_args() args = get_args()
containers_list = args.containers.replace(" ", "").strip("[]").split(",") 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) containers_status = get_docker_states(containers_list)
status = 0 status = 0
......
[metadata] [metadata]
version = 1.8.3 version = 1.8.4
license_files = LICENSE license_files = LICENSE
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown
......