don't save info after UpdateStream (#1779)

This commit is contained in:
David Colburn
2023-06-07 16:27:37 -07:00
committed by GitHub
parent 22813cd2be
commit 8235310a92

View File

@@ -255,12 +255,6 @@ func (s *EgressService) UpdateStream(ctx context.Context, req *livekit.UpdateStr
}
}
go func() {
if err := s.es.UpdateEgress(ctx, info); err != nil {
logger.Errorw("could not write egress info", err)
}
}()
return info, nil
}