Skip to content

Commit 12bb1a7

Browse files
committed
Add target to list running Dagster processes in Makefile
1 parent 1dd4e7b commit 12bb1a7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ locald:
3232
kill-locald:
3333
kill -9 $(shell ps aux | grep dagster | grep -v grep | awk '{print $$2}')
3434

35+
# list any running dagster process
36+
ps-locald:
37+
ps aux | grep dagster | grep -v grep
38+
3539
# list running dagster process
3640
ps-locald:
3741
ps aux | grep dagster | grep -v grep

0 commit comments

Comments
 (0)