Skip to content

docs: fix javadoc blocking snapshot release #889

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

Merged
merged 1 commit into from
Jan 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public interface EventSourceInitializer<P extends HasMetadata> {
*
* @param context a {@link EventSourceContext} providing access to information useful to event
* sources
* @return list of event sources to register
*/
List<EventSource> prepareEventSources(EventSourceContext<P> context);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* reconciliation is scheduled with a target interval after the last reconciliation. Note that
* this not applies for retries, in case of an exception reconciliation is not scheduled. This is
* not a fixed rate, in other words a new reconciliation is scheduled after each reconciliation.
* <p/>
* <p>
* If an interval is specified by {@link UpdateControl} or {@link DeleteControl}, those take
* precedence.
* <p/>
* <p>
* This is a fail-safe feature, in the sense that if informers are in place and the reconciler
* implementation is correct, this feature can be turned off.
* <p/>
* <p>
* Use NO_RECONCILIATION_MAX_INTERVAL in {@link Constants} to turn off this feature.
*
* @return max delay between reconciliations
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ private UpdateControl(
* Creates an update control instance that instructs the framework to do an update on resource
* itself, not on the status. Note that usually as a results of a reconciliation should be a
* status update not an update to the resource itself.
*
* @param <T> custom resource type
* @param customResource customResource to use for update
* @return initialized update control
*/
public static <T extends HasMetadata> UpdateControl<T> updateResource(T customResource) {
return new UpdateControl<>(customResource, false, true);
Expand Down