Skip to content

Commit

Permalink
fix route and configuration race (kubeflow#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakelkar authored and k8s-ci-robot committed Jun 28, 2019
1 parent b848c27 commit e02b6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/kfservice/kfservice_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ func (r *ReconcileService) Reconcile(request reconcile.Request) (reconcile.Resul
}

reconcilers := []Reconciler{
knative.NewRouteReconciler(r.Client, r.scheme),
knative.NewConfigurationReconciler(r.Client, r.scheme, configMap),
knative.NewRouteReconciler(r.Client, r.scheme),
}

for _, reconciler := range reconcilers {
Expand Down

0 comments on commit e02b6bf

Please sign in to comment.