Set non-experimental WatchProgressNotifyInterval config field

This commit is contained in:
Jordan Liggitt
2025-03-27 11:54:39 -04:00
parent 079d4e52c2
commit 6b0ebedccc

View File

@@ -105,7 +105,7 @@ func TestWatchInitializationSignal(t *testing.T) {
func TestProgressNotify(t *testing.T) {
clusterConfig := testserver.NewTestConfig(t)
clusterConfig.ExperimentalWatchProgressNotifyInterval = time.Second
clusterConfig.WatchProgressNotifyInterval = time.Second
ctx, store, _ := testSetup(t, withClientConfig(clusterConfig))
storagetesting.RunOptionalTestProgressNotify(ctx, t, store)
@@ -122,7 +122,7 @@ func TestWatchWithUnsafeDelete(t *testing.T) {
// etcd implementation doesn't have any effect.
func TestWatchDispatchBookmarkEvents(t *testing.T) {
clusterConfig := testserver.NewTestConfig(t)
clusterConfig.ExperimentalWatchProgressNotifyInterval = time.Second
clusterConfig.WatchProgressNotifyInterval = time.Second
ctx, store, _ := testSetup(t, withClientConfig(clusterConfig))
storagetesting.RunTestWatchDispatchBookmarkEvents(ctx, t, store, false)