Add trailing slash to status URI

Apparently, pulp redirects /status to /status/. Adding the trailing
slash here allows to avoid a useless redirect, and may help avoiding
issues with Satellite not answering on due time, or other hard to debug
situations.

Change-Id: I32d4944d78e3fc2714243129906937e74be4465f
This commit is contained in:
Cédric Jeanneret 2022-06-21 16:47:05 +02:00
parent ef52a27bb3
commit 9d1a91821a
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
- name: SATELLITE | Check for Satellite 6
uri:
url: "{{ rhsm_satellite_url }}/pulp/api/v2/status"
url: "{{ rhsm_satellite_url }}/pulp/api/v2/status/"
validate_certs: false
status_code:
- 200
@ -41,7 +41,7 @@
block:
- name: SATELLITE | Check for Satellite 6.10
uri:
url: "{{ rhsm_satellite_url }}/pulp/api/v3/status"
url: "{{ rhsm_satellite_url }}/pulp/api/v3/status/"
validate_certs: false
status_code:
- 200