Update CI configs to v0.11.15

Update lint scripts and CI configs.
This commit is contained in:
Pion
2024-08-16 15:20:37 +00:00
committed by Sean DuBois
parent d54f7870eb
commit 752e442994
8 changed files with 20 additions and 20 deletions

View File

@@ -38,7 +38,7 @@ func doSignaling(w http.ResponseWriter, r *http.Request) {
d.OnOpen(func() {
for range time.Tick(time.Second * 3) {
if err = d.SendText(time.Now().String()); err != nil {
if errors.Is(io.ErrClosedPipe, err) {
if errors.Is(err, io.ErrClosedPipe) {
return
}
panic(err)