forked from knative-extensions/eventing-kafka-broker
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workaround for TestKafkaSourceDeletedFromContractConfigMaps timeouts …
…on cleanup (#932)
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
openshift/patches/reconciler-test-delete-resources-timeout-increase.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/vendor/knative.dev/reconciler-test/pkg/feature/feature.go b/vendor/knative.dev/reconciler-test/pkg/feature/feature.go | ||
index c245012ff..933f50e79 100644 | ||
--- a/vendor/knative.dev/reconciler-test/pkg/feature/feature.go | ||
+++ b/vendor/knative.dev/reconciler-test/pkg/feature/feature.go | ||
@@ -229,7 +229,7 @@ func DeleteResources(ctx context.Context, t T, refs []corev1.ObjectReference) er | ||
|
||
var lastResource corev1.ObjectReference // One still present resource | ||
|
||
- err := wait.Poll(time.Second, 4*time.Minute, func() (bool, error) { | ||
+ err := wait.Poll(time.Second, 8*time.Minute, func() (bool, error) { | ||
for _, ref := range refs { | ||
gv, err := schema.ParseGroupVersion(ref.APIVersion) | ||
if err != nil { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters