-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Allow setting shell and timeout in generatorOptions #497
Allow setting shell and timeout in generatorOptions #497
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Liujingfang1 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
One comment. Others LG.
if !f.fSys.IsDir(f.wd) { | ||
f.wd = filepath.Dir(f.wd) | ||
if !f.fSys.IsDir(f.wd) { | ||
return nil, errors.New("not a directory: " + f.wd) | ||
} | ||
} | ||
|
||
if options != nil && options.TimeoutSeconds != nil { | ||
timeout = time.Duration(*options.TimeoutSeconds) * time.Second |
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.
It seems a non-nil options.TimeoutSeconds
always overrides timeout
.
It'd be better if these two can be merged into one. Or you need to document it somewhere, maybe in comments.
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.
The timeout inside secretArgs will be deprecated.
Before the deprecation, what about picking up the max of the two?
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.
what about picking up the max of the two
That probably makes more sense :)
8dd1802
to
fdf5fa5
Compare
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.
/lgtm
No description provided.