We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d250e80 commit 93b63bfCopy full SHA for 93b63bf
test/scripts/first-event-delay.sh
@@ -154,11 +154,16 @@ function wait_for_cloudevent {
154
done
155
}
156
157
+function create {
158
+ app foo$i | ko resolve ${KO_FLAGS} -Bf - | kubectl apply -f -
159
+}
160
+
161
function run {
162
i=$1
163
164
+ # Retry 3 times, workaround for https://github.com/knative/pkg/issues/1509
165
+ create "$i" || create "$i" || create "$i" || return $?
166
failed=false
- app foo$i | ko resolve ${KO_FLAGS} -Bf - | kubectl apply -f -
167
kubectl wait kafkachannel --timeout=60s -n foo$i channel --for=condition=Ready=True || failed=true
168
kubectl wait subscription --timeout=60s -n foo$i event-display --for=condition=Ready=True || failed=true
169
0 commit comments