mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 15:35:41 +00:00
increase subscription debounce interval
This commit is contained in:
@@ -175,6 +175,11 @@ func PublishDocker() error {
|
||||
return err
|
||||
}
|
||||
|
||||
// don't publish snapshot versions as latest or minor version
|
||||
if strings.HasSuffix(version.Version, "SNAPSHOT") {
|
||||
return nil
|
||||
}
|
||||
|
||||
idx := strings.LastIndex(version.Version, ".")
|
||||
minorImg := fmt.Sprintf("%s:v%s", imageName, version.Version[:idx])
|
||||
cmd = exec.Command("docker", "tag", versionImg, minorImg)
|
||||
|
||||
@@ -12,7 +12,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
subscriptionDebounceInterval = 10 * time.Millisecond
|
||||
subscriptionDebounceInterval = 100 * time.Millisecond
|
||||
)
|
||||
|
||||
type SubscribedTrack struct {
|
||||
|
||||
Reference in New Issue
Block a user