Skip to content

Commit

Permalink
Merge branch 'bug-with-tags-table-name'
Browse files Browse the repository at this point in the history
  • Loading branch information
luutuankiet committed Feb 19, 2024
2 parents a88f76b + 752599c commit 8368fcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ init_deploy:
. .github/workflows/deployment.sh

dagster:
tmux send-keys -t dagster.0 "source .venv/bin/activate && source .env && dagster dev -h 0.0.0.0 -p 3001" ENTER
tmux send-keys -t dagster.0 "source .venv/bin/activate && source .env && dbt parse && dagster dev -h 0.0.0.0 -p 3001" ENTER

streamlit:
tmux send-keys -t streamlit.0 "source .venv/bin/activate && source .env && cd app/charts && streamlit run main.py" ENTER
Expand Down
8 changes: 4 additions & 4 deletions dbt_project/analyses/active_tags_count.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ WHERE
)

select

cnt_clarifyme::int as cnt_clarifyme,
(cnt_none+cnt_context)::int as cnt_next_action,
cast(
100 - (cnt_clarifyme* 100 / (cnt_clarifyme + cnt_none + cnt_context)) as decimal(10,2)
) as clarification_progress,
cnt_clarifyme::int,
(cnt_none+cnt_context)::int as cnt_next_action,

) as clarification_progress
from source

0 comments on commit 8368fcb

Please sign in to comment.