From a82d8cfef7459f62e4f231e4d527f76bef0c9ff3 Mon Sep 17 00:00:00 2001 From: Cesar Mendivil Date: Mon, 23 Mar 2026 17:24:57 -0700 Subject: [PATCH] fix: enable CORE_API_AUTH_ENABLE in Dockerfile and update go.mod dependencies --- Dockerfile.whip-test | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.whip-test b/Dockerfile.whip-test index 5d46d007..5f61cffe 100644 --- a/Dockerfile.whip-test +++ b/Dockerfile.whip-test @@ -38,7 +38,7 @@ ENV CORE_WHIP_RTSP_ADDRESS=:8554 # Set runtime flags and secrets when launching the container instead, for example: # docker run -e CORE_API_AUTH_ENABLE=false ... # The following env is intentionally left unset in the image to avoid baking config: -# ENV CORE_API_AUTH_ENABLE=false +ENV CORE_API_AUTH_ENABLE=false ENV CORE_RTMP_ENABLE=true ENV CORE_SRT_ENABLE=true ENV CORE_PLAYOUT_ENABLE=true diff --git a/go.mod b/go.mod index 2b569026..cd5339f1 100644 --- a/go.mod +++ b/go.mod @@ -23,6 +23,7 @@ require ( github.com/mattn/go-isatty v0.0.20 github.com/minio/minio-go/v7 v7.0.70 github.com/pion/interceptor v0.1.29 + github.com/pion/rtcp v1.2.14 github.com/pion/webrtc/v3 v3.3.6 github.com/prep/average v0.0.0-20200506183628-d26c465f48c3 github.com/prometheus/client_golang v1.19.1 @@ -81,7 +82,6 @@ require ( github.com/pion/logging v0.2.2 // indirect github.com/pion/mdns v0.0.12 // indirect github.com/pion/randutil v0.1.0 // indirect - github.com/pion/rtcp v1.2.14 // indirect github.com/pion/rtp v1.8.7 // indirect github.com/pion/sctp v1.8.19 // indirect github.com/pion/sdp/v3 v3.0.9 // indirect