You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnConfig{}, nil, fmt.Errorf("failed to parse server URL: %w", err)
270
+
// In VenafiConnection mode, we don't need the server field. For the other
271
+
// modes, we do need to validate the server field.
272
+
varbaseURLstring
273
+
ifflags.VenConnName!="" {
274
+
ifcfg.Server!="" {
275
+
log.Printf("ignoring the server field specified in the config file. In Venafi Connection mode, this field is not needed. Use the VenafiConnection's spec.vcp.url field instead.")
276
+
}
277
+
} else {
278
+
baseURL=cfg.Server
279
+
ifbaseURL=="" {
280
+
log.Printf("Using deprecated Endpoint configuration. User Server instead.")
0 commit comments