Matt Houglum

Results 7 comments of Matt Houglum

I no longer maintain gsutil, but before I handed it off to the new owners, I actually created a fork of boto/boto for gsutil to use because it looks like...

> The behavior described is expected and not a bug. > > Every SyncPeriod the underlying informers will emit events to trigger reconciliation of all objects. But if there are...

> As far as I'm aware there is no way to filter based on the "sync trigger". True - there's not an _explicit_ attribute that holds this info. However, I...

Fair point, but I'd also expect it to not have the side effect of filtering out periodic sync events, which is why this issue and #1990 were filed. I personally...

I initially implemented my solution above as `GenerationChangedPredicate` combined via `predicate.Or()` with a custom predicate that only did the `ResourceVersion` check. However, a colleague brought up something I thought was...

Gentle ping on the comment above. I've been seeing more and more instances in my team's codebase (and another occurrence from the issue in the mention above this comment) where...

Just saw another example in the wild today of this coming back to bite someone: ``` // ... For(&mypackage.MyType{}, builder.WithPredicates( predicate.GenerationChangedPredicate{}, predicate.Funcs{CreateFunc: func(event.CreateEvent) bool { return true }}, predicate.Funcs{UpdateFunc: func(event.UpdateEvent)...