Skip to content

Commit

Permalink
remove extra string in container check script
Browse files Browse the repository at this point in the history
  • Loading branch information
ahembree committed Dec 25, 2023
1 parent bedcc46 commit 7e205e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/check_containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def main():
name = 'authentik'
ssl = True
url = f'http{"s" if ssl else ""}://{host_ip}:{host_port}{suffix}'
host_header = f'{name}.home.{domain}'
host_header = f'{name}.{domain}'
logging.debug(f'getting {url} with Host header {host_header}')
# file deepcode ignore SSLVerificationBypass: Containers may host a self-signed certificate
response = requests.get(url, verify=False, headers={
Expand Down

0 comments on commit 7e205e9

Please sign in to comment.