Skip to content

Commit

Permalink
Merge branch 'develop' into 85_Move-chiptool-specific-code-under-test…
Browse files Browse the repository at this point in the history
…_collections
  • Loading branch information
ccruzagralopes committed Nov 14, 2023
2 parents 42f0b02 + a271912 commit 649ab5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ def get_emails_enabled(cls, v: bool, values: Dict[str, Any]) -> bool:

# SDK Docker Image
SDK_DOCKER_IMAGE: str = "connectedhomeip/chip-cert-bins"
SDK_DOCKER_TAG: str = "19771ed7101321d68b87d05201d42d00adf5368f"
SDK_DOCKER_TAG: str = "f06d9520d02d68076c5accbf839f168cda89c47c"
# SDK SHA: used to fetch test YAML from SDK.
SDK_SHA: str = "19771ed7101321d68b87d05201d42d00adf5368f"
SDK_SHA: str = "f06d9520d02d68076c5accbf839f168cda89c47c"

class Config:
case_sensitive = True
Expand Down
3 changes: 2 additions & 1 deletion gunicorn/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,5 @@ else
fi

# Start Gunicorn
exec gunicorn -k "$WORKER_CLASS" -c "$GUNICORN_CONF" "$APP_MODULE"
echo "Starting Gunicorn: gunicorn -k \"$WORKER_CLASS\" -c \"$GUNICORN_CONF\" \"$APP_MODULE\""
exec gunicorn -k "$WORKER_CLASS" -c "$GUNICORN_CONF" "$APP_MODULE"
3 changes: 3 additions & 0 deletions prestart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ do
# Only run prestart.sh if present/
[ -x $prestart ] && $prestart
done

# We echo "complete" to ensure this scripts last command has exit code 0.
echo "Prestart Complete"

0 comments on commit 649ab5d

Please sign in to comment.