Skip to content

Commit

Permalink
see what's going on
Browse files Browse the repository at this point in the history
  • Loading branch information
james-jdgtl committed Feb 25, 2025
1 parent ec51bbb commit 16c1e91
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/circleci.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, params, log_level=logging.INFO):
def test_connection(self):
try:
response = requests.get(
f'{self.url}/hmpps-project-bootstrap', headers=self.headers, timeout=10
f'{self.url}hmpps-project-bootstrap', headers=self.headers, timeout=10
)
response.raise_for_status()
self.log.info(f'CircleCI API: {response.status_code}')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
containers:
- name: github-discovery
image: ghcr.io/ministryofjustice/hmpps-github-discovery
command: ["python", "-u", "/app/github_discovery.py", '-f']
command: ["python", "-u", "/app/github_discovery.py", "-f"]
env:
- name: PATH
value: "/home/appuser/.local:/usr/local/bin:$PATH"
Expand Down
3 changes: 2 additions & 1 deletion helm_deploy/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ discoveryCronJob:

cron:
github_teams_discovery: "20 */6 * * *"
github_discovery: "45 0,4-22/2 * * *"
github_discovery: "15 1,3-23/2 * * *"
# github_discovery: "45 0,4-22/2 * * *"
github_discovery_full: "45 2 * * *"

0 comments on commit 16c1e91

Please sign in to comment.