Skip to content

Commit

Permalink
Merge pull request #254 from cloud-gov/overhaul
Browse files Browse the repository at this point in the history
more debug stuff
  • Loading branch information
rcgottlieb authored Dec 3, 2024
2 parents 2a654ec + 36e1af0 commit 066b10c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/aws-iam-check-keys/find_stale_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,9 @@ def send_key(key_dict: dict, severity: str):
Send the key(s) to the pushgateway client to let it determine if they
are stale
"""
gateway_test = f"{env.str('GATEWAY_HOST')}:9091"
print(gateway_test)
gateway = f"{env.str('GATEWAY_HOST')}:{env.int('GATEWAY_PORT', 9091)}"
gateway = f"{env.str('GATEWAY_HOST')}:9091"
#print(gateway_test)
#gateway = f"{env.str('GATEWAY_HOST')}:{env.int('GATEWAY_PORT', 9091)}"
print(gateway)
registry = CollectorRegistry()
days_since_rotation = key_dict["days_since_rotation"]
Expand Down

0 comments on commit 066b10c

Please sign in to comment.