Skip to content

Commit

Permalink
fix: param spelling mistake PostgresClient.url --> .uri
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Aug 5, 2024
1 parent e8ca115 commit 680be72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osm_rawdata/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ def queryRemote(
return None

task_id = result.json().get("task_id")
task_query_url = f"{self.url}/tasks/status/{task_id}"
task_query_url = f"{self.uri}/tasks/status/{task_id}"
log.debug(f"Raw Data API Query URL: {task_query_url}")

polling_interval = 2 # Initial polling interval in seconds
Expand Down

0 comments on commit 680be72

Please sign in to comment.