Skip to content

Commit

Permalink
Updated image
Browse files Browse the repository at this point in the history
  • Loading branch information
honeytung committed Jul 2, 2024
1 parent 37bd6a9 commit 60553f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions deploy/k3s/edge_deployment/edge_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
serviceAccountName: edge-endpoint-service-account
initContainers:
- name: database-prep
image: 723181461334.dkr.ecr.us-west-2.amazonaws.com/edge-endpoint:cicd-fix-659a3520f-dirty-881f8140108c1ef
image: 723181461334.dkr.ecr.us-west-2.amazonaws.com/edge-endpoint:cicd-fix-37bd6a998-dirty-651bd9e5ddf401a
imagePullPolicy: IfNotPresent
env:
# Flag to indicate whether or not to reset all database tables. Resetting WILL delete
Expand All @@ -59,7 +59,7 @@ spec:

containers:
- name: edge-endpoint
image: 723181461334.dkr.ecr.us-west-2.amazonaws.com/edge-endpoint:cicd-fix-659a3520f-dirty-881f8140108c1ef
image: 723181461334.dkr.ecr.us-west-2.amazonaws.com/edge-endpoint:cicd-fix-37bd6a998-dirty-651bd9e5ddf401a
imagePullPolicy: IfNotPresent
ports:
- containerPort: 6717
Expand All @@ -83,7 +83,7 @@ spec:
mountPath: /opt/groundlight/edge/sqlite

- name: inference-model-updater
image: 723181461334.dkr.ecr.us-west-2.amazonaws.com/edge-endpoint:cicd-fix-659a3520f-dirty-881f8140108c1ef
image: 723181461334.dkr.ecr.us-west-2.amazonaws.com/edge-endpoint:cicd-fix-37bd6a998-dirty-651bd9e5ddf401a
imagePullPolicy: IfNotPresent
command: ["/bin/bash", "-c"]
args: ["poetry run python -m app.model_updater.update_models"]
Expand Down
2 changes: 1 addition & 1 deletion test/api/test_motdet.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def test_motion_detection_not_sufficient_if_doesnt_meet_conf_threshold(gl: Groun
detector=detector.id,
image=original_image,
patience_time=30.0,
confidence_threshold=(0.99999), # Require a higher confidence than before
confidence_threshold=base_iq_response.result.confidence + 1e-3, # Require a higher confidence than before
)

assert new_response.id != base_iq_response.id, "ImageQuery id should be different whether or not motion det is run"
Expand Down

0 comments on commit 60553f8

Please sign in to comment.