-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revisit SharedInformer support and do Improvements #1894
Comments
@yybear : nice catch. It seems like a bug to me. Could you please create a quick PR to fix this issue? |
@rohanKanojia : another question, in golang reflector.go this is different from reflector.go, is this ok? |
@yybear : I'm not sure since it might be possible that client-go's codebase had undergone changes after we ported this from them. I think I have to take a look again to align informer support with latest client-go releases. Do you mind if I pick this issue up instead? I think it might be more involved. |
@rohanKanojia Yes, sure. |
This PR contains some improvements/changes that happened since last port of this feature from official go client + official java client
This PR contains some improvements/changes that happened since last port of this feature from official go client + official java client
This PR contains some improvements/changes that happened since last port of this feature from official go client + official java client
This PR contains some improvements/changes that happened since last port of this feature from official go client + official java client
with 4.6.1
public void determineNextResync(ZonedDateTime now) { this.nextResync = now.plusSeconds(this.resyncPeriod); }
in DefaultShareIndexInformer.java
ProcessorListener<T> listener = new ProcessorListener(handler, determineResyncPeriod(resyncCheckPeriodMillis, this.resyncCheckPeriodMillis));
so using plusSeconds to get nextResync is ok?
The text was updated successfully, but these errors were encountered: