Halyna R.#5
Conversation
📝 HackYourFuture auto gradeAssignment Score: 85 / 100 ✅Status: ✅ Passed Test Details |
| logger = logging.getLogger(__name__) | ||
| logging.getLogger("azure").setLevel(logging.WARNING) | ||
|
|
||
| # TASK 3 hint: quiet the Azure SDK so its DEBUG output does not drown your own |
There was a problem hiding this comment.
The Postgres connection should include or enforce sslmode=require. Azure Postgres often rejects non-SSL connections, and the assignment/grader expects this to be handled
|
|
||
| postqres_url = os.environ.get("POSTGRES_URL") | ||
| storage_connection = os.environ.get("AZURE_STORAGE_CONNECTION_STRING") | ||
| source_name = os.environ.get("SOURCE_NAME", "weather") |
There was a problem hiding this comment.
This currently writes to a weather table in the default schema. The assignment required creating a personal schema such as dev_halyna1995, setting search_path, and writing to weather_readings there
| ```bash | ||
| az containerapp job execution list --name halyna1995-job --resource-group rg-hyf-data --output table | ||
|
|
||
| az storage blob list --account-name hyfstoragedev --container-name raw --auth-mode login --output table |
There was a problem hiding this comment.
The bash code block under verification is not closed, so the rest of the README renders as code
AgneseG
left a comment
There was a problem hiding this comment.
Core pipeline exists, but misses important assignment requirements: no personal schema/search_path, wrong table name, no sslmode=require, README formatting issue.
For next submissinos, pls write a description of the PR too, thanks!
Complete week 6 Azure assignment