File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,6 @@ func NewScheduledWorkflowClientOrFatal(initConnectionTimeout time.Duration, clie
61
61
if err == nil {
62
62
return swfClientInstance
63
63
}
64
- glog .Infof ("(Expected when in cluster) Failed to create scheduled workflow client by out of cluster kubeconfig. Error: %v" , err )
65
64
66
65
glog .Infof ("Starting to create scheduled workflow client by in cluster config." )
67
66
b := backoff .NewExponentialBackOff ()
Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ import (
20
20
"encoding/json"
21
21
"flag"
22
22
"fmt"
23
- "github.com/kubeflow/pipelines/backend/src/apiserver/client"
24
- "google.golang.org/grpc/credentials"
25
23
"io"
26
24
"io/ioutil"
27
25
"math"
@@ -32,6 +30,9 @@ import (
32
30
"strings"
33
31
"time"
34
32
33
+ "github.com/kubeflow/pipelines/backend/src/apiserver/client"
34
+ "google.golang.org/grpc/credentials"
35
+
35
36
"github.com/fsnotify/fsnotify"
36
37
"github.com/golang/glog"
37
38
"github.com/gorilla/mux"
@@ -98,13 +99,13 @@ func main() {
98
99
)
99
100
err = loadSamples (resourceManager )
100
101
if err != nil {
101
- glog .Fatalf ( "Failed to load samples. Err : %v" , err )
102
+ glog .Infof ( "Couldn't load optional pipeline samples : %v" , err )
102
103
}
103
104
104
105
if ! common .IsMultiUserMode () {
105
106
_ , err = resourceManager .CreateDefaultExperiment ("" )
106
107
if err != nil {
107
- glog .Fatalf ( "Failed to create default experiment. Err : %v" , err )
108
+ glog .Infof ( "Couldn't create optional default experiment: %v" , err )
108
109
}
109
110
}
110
111
You can’t perform that action at this time.
0 commit comments