Skip to content

Commit

Permalink
Tweak the output of the --print-table-refresh-command flag for QC r…
Browse files Browse the repository at this point in the history
…eports (#614)

* Tweak the output of the `--print-table-refresh-command` flag for QC reports

* Update dbt/README.md to match new behavior of --print-table-refresh-command
  • Loading branch information
jeancochrane authored Oct 7, 2024
1 parent 5445b63 commit fe03dcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dbt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -799,10 +799,10 @@ You should see output like this, which you can run in the context of the
repository on the server in order to refresh iasWorld tables:

```
ssh into the server and run the following commands:
Run the following commands on the Data Team server:
cd /path/to/service-spark-iasworld/
docker-compose up -d
docker compose up -d
docker exec spark-node-master ./submit.sh --json-string --no-run-github-workflow
'{"aprval": {"table_name": "iasworld.aprval", "min_year": 2024, "cur": ["Y"], ...
```
Expand Down
4 changes: 2 additions & 2 deletions dbt/scripts/export_qc_town_close_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ def main():

iasworld_deps[table_name] = formatted_dep

print("ssh into the server and run the following commands:")
print("Run the following commands on the Data Team server:")
print()
print("cd /home/shiny-server/services/service-spark-iasworld")
print("docker-compose up -d")
print("docker compose up -d")
print(
"docker exec spark-node-master ./submit.sh "
"--no-run-github-workflow "
Expand Down

0 comments on commit fe03dcb

Please sign in to comment.