Skip to content
Closed
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
3 changes: 2 additions & 1 deletion pkg/controller/util/channel_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ func RemoveChannelCondition(status *v1alpha1.ChannelStatus, condType v1alpha1.Ch
// given all other sub-conditions.
func ConsolidateChannelCondition(status *v1alpha1.ChannelStatus) {
subConditionsTypes := []v1alpha1.ChannelConditionType{
v1alpha1.ChannelProvisioned,
// TODO restore ChannelProvisioned condition with issue #285
// v1alpha1.ChannelProvisioned,
v1alpha1.ChannelRoutable,
v1alpha1.ChannelServiceable,
}
Expand Down
2 changes: 2 additions & 0 deletions test/e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ function wait_until_flow_ready() {
kubectl get -n $NAMESPACE flows $NAME -oyaml
kubectl get -n $NAMESPACE jobs $NAME-start -oyaml
kubectl get -n $NAMESPACE feeds $NAME -oyaml
kubectl get -n $NAMESPACE channels $NAME -oyaml
kubectl get -n $NAMESPACE subscriptions $NAME -oyaml
echo -e "Dumping controller manager logs"
kubectl -n knative-eventing logs `kubectl -n knative-eventing get pods -oname | grep controller-manager` controller-manager
echo -e "Dumping controller logs"
Expand Down