We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current expectation, and even after the proposed changes for #3271, a list is not waitable - only a single resource.
This can be addressed by changing
public interface WatchListDeletable<T, L> extends VersionWatchAndWaitable<T>
to
public interface WatchListDeletable<T, L> extends Watchable<Watcher<T>>, Versionable<WatchAndWaitable<T>>
Or I can generalize the logic in #3274 to support waiting on a list.
The text was updated successfully, but these errors were encountered:
fix fabric8io#3278: should not allow wait at a list context
37c31b0
d7fa4c2
55a98c0
shawkins
No branches or pull requests
The current expectation, and even after the proposed changes for #3271, a list is not waitable - only a single resource.
This can be addressed by changing
to
Or I can generalize the logic in #3274 to support waiting on a list.
The text was updated successfully, but these errors were encountered: