@@ -231,7 +231,7 @@ type Options struct {
231
231
// This will be used for all object types, unless it is set in ByObject or
232
232
// DefaultNamespaces.
233
233
//
234
- // Defaults to true .
234
+ // Defaults to false .
235
235
DefaultEnableWatchBookmarks * bool
236
236
237
237
// ByObject restricts the cache's ListWatch to the desired fields per GVK at the specified object.
@@ -291,7 +291,7 @@ type ByObject struct {
291
291
// assume bookmarks are returned at any specific interval, nor may they
292
292
// assume the server will send any BOOKMARK event during a session.
293
293
//
294
- // Defaults to true .
294
+ // Defaults to false .
295
295
EnableWatchBookmarks * bool
296
296
}
297
297
@@ -326,7 +326,7 @@ type Config struct {
326
326
// assume bookmarks are returned at any specific interval, nor may they
327
327
// assume the server will send any BOOKMARK event during a session.
328
328
//
329
- // Defaults to true .
329
+ // Defaults to false .
330
330
EnableWatchBookmarks * bool
331
331
}
332
332
@@ -430,7 +430,7 @@ func newCache(restConfig *rest.Config, opts Options) newCacheFunc {
430
430
Transform : config .Transform ,
431
431
WatchErrorHandler : opts .DefaultWatchErrorHandler ,
432
432
UnsafeDisableDeepCopy : ptr .Deref (config .UnsafeDisableDeepCopy , false ),
433
- EnableWatchBookmarks : ptr .Deref (config .EnableWatchBookmarks , true ),
433
+ EnableWatchBookmarks : ptr .Deref (config .EnableWatchBookmarks , false ),
434
434
NewInformer : opts .newInformer ,
435
435
}),
436
436
readerFailOnMissingInformer : opts .ReaderFailOnMissingInformer ,
0 commit comments