Skip to content

Commit

Permalink
fix fabric8io#3278: should not allow wait at a list context
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Jun 29, 2021
1 parent 64dce1f commit d7fa4c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* Fix #3272: prevent index npe after informer sees an empty list
* Fix #3275: filter related dsl methods withLabel, withField, etc. should not modify the current context. If you need similar behavior to the previous use `Filterable.withNewFilter`.
* Fix #3271: waitUntilReady and waitUntilCondition should handle resource too old
* Fix #3278: `Waitable` methods should not be available at a list context

#### Improvements
* Fix #3078: adding javadocs to further clarify patch, edit, replace, etc. and note the possibility of items being modified.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@

import io.fabric8.kubernetes.client.GracePeriodConfigurable;
import io.fabric8.kubernetes.client.PropagationPolicyConfigurable;
import io.fabric8.kubernetes.client.Watcher;

public interface WatchListDeletable<T, L> extends VersionWatchAndWaitable<T>, Listable<L>, Deletable,
public interface WatchListDeletable<T, L> extends Watchable<Watcher<T>>, Versionable<WatchAndWaitable<T>>, Listable<L>, Deletable,
GracePeriodConfigurable<Deletable>,
PropagationPolicyConfigurable<EditReplacePatchDeletable<T>>,
StatusUpdatable<T>,
Expand Down

0 comments on commit d7fa4c2

Please sign in to comment.