-
Notifications
You must be signed in to change notification settings - Fork 246
LCM refactor #3202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: gapra/resumeInit2
Are you sure you want to change the base?
LCM refactor #3202
Conversation
common.NewAzError(common.EAzError.LoginCredMissing(), "No SAS token or OAuth token is present and the resource is not public") | ||
if public { | ||
credType = common.ECredentialType.Anonymous() | ||
public = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we are already inside 'if public', the variable is guaranteed to be true.
Reassigning public = true here isnt redundant?
@@ -0,0 +1,732 @@ | |||
package cmd |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing license header
closeFunc func() // used to close logs before exiting | ||
waitForUserResponse chan bool | ||
msgHandlerChannel chan *common.LCMMsg | ||
OutputVerbosityType common.OutputVerbosity |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we keep this local variable? As we have SetOutputVerbosity() API exposed
Sorry in advance for how large this PR is.
This PR does two things