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
Copy file name to clipboardExpand all lines: cmd/login.go
+4-3
Original file line number
Diff line number
Diff line change
@@ -116,9 +116,10 @@ type loginCmdArgs struct {
116
116
117
117
func (lcaloginCmdArgs) process() error {
118
118
// Login type consolidation to allow backward compatibility.
119
-
iflca.servicePrincipal||lca.identity {
120
-
glcm.Warn("The flags --service-principal and --identity will be deprecated in a future release. Please use --login-type=SPN or --login-type=MSI instead.")
121
-
}
119
+
// Commenting the warning message till we decide on when to deprecate these options
120
+
// if lca.servicePrincipal || lca.identity {
121
+
// glcm.Warn("The flags --service-principal and --identity will be deprecated in a future release. Please use --login-type=SPN or --login-type=MSI instead.")
0 commit comments