Increase network state delete threshold to 10 minutes

This commit is contained in:
Daniel
2021-04-03 16:14:34 +02:00
parent 909c7a031c
commit 9b22e5cede

View File

@@ -14,7 +14,7 @@ import (
const ( const (
cleanerTickDuration = 5 * time.Second cleanerTickDuration = 5 * time.Second
deleteConnsAfterEndedThreshold = 5 * time.Minute deleteConnsAfterEndedThreshold = 10 * time.Minute
) )
func connectionCleaner(ctx context.Context) error { func connectionCleaner(ctx context.Context) error {