Skip to content

Commit 07db8f0

Browse files
committed
Merge pull request #3943 from mboersma/cleanup-registry-confd
fix(registry): run pkill as registry user, removing "-u"
2 parents 01110f2 + 4ef2270 commit 07db8f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

registry/bin/reload

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

33
# Send SIGHUP to gunicorn in general, since we didn't launch it with `--pid`
4-
pkill -HUP -u gunicorn
4+
sudo -u registry pkill -HUP -f gunicorn || true

0 commit comments

Comments
 (0)