Skip to content

Commit

Permalink
refactor: dont show curl progress in jibri log
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom authored and saghul committed Oct 2, 2023
1 parent aae8846 commit a8aacf1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CONF="/etc/jitsi/jibri/jibri.conf"
PORT=$(hocon -f $CONF get jibri.api.http.internal-api-port 2>/dev/null || true)
[[ -z "$PORT" ]] && PORT=3333

curl -X POST http://127.0.0.1:$PORT/jibri/api/internal/v1.0/gracefulShutdown
curl -sX POST http://127.0.0.1:$PORT/jibri/api/internal/v1.0/gracefulShutdown
2 changes: 1 addition & 1 deletion resources/debian-package/opt/jitsi/jibri/reload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CONF="/etc/jitsi/jibri/jibri.conf"
PORT=$(hocon -f $CONF get jibri.api.http.internal-api-port 2>/dev/null || true)
[[ -z "$PORT" ]] && PORT=3333

curl -X POST http://127.0.0.1:$PORT/jibri/api/internal/v1.0/notifyConfigChanged
curl -sX POST http://127.0.0.1:$PORT/jibri/api/internal/v1.0/notifyConfigChanged
2 changes: 1 addition & 1 deletion resources/debian-package/opt/jitsi/jibri/shutdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CONF="/etc/jitsi/jibri/jibri.conf"
PORT=$(hocon -f $CONF get jibri.api.http.internal-api-port 2>/dev/null || true)
[[ -z "$PORT" ]] && PORT=3333

curl -X POST http://127.0.0.1:$PORT/jibri/api/internal/v1.0/shutdown
curl -sX POST http://127.0.0.1:$PORT/jibri/api/internal/v1.0/shutdown

0 comments on commit a8aacf1

Please sign in to comment.