chore: change port to 6060 by default in devserver (#3191)
This commit is contained in:
@@ -358,14 +358,16 @@ func createOutput(path string) (io.WriteCloser, error) {
|
|||||||
return nil, ErrLogPathNotSet
|
return nil, ErrLogPathNotSet
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var rule RotateRule
|
||||||
switch options.rotationRule {
|
switch options.rotationRule {
|
||||||
case sizeRotationRule:
|
case sizeRotationRule:
|
||||||
return NewLogger(path, NewSizeLimitRotateRule(path, backupFileDelimiter, options.keepDays,
|
rule = NewSizeLimitRotateRule(path, backupFileDelimiter, options.keepDays, options.maxSize,
|
||||||
options.maxSize, options.maxBackups, options.gzipEnabled), options.gzipEnabled)
|
options.maxBackups, options.gzipEnabled)
|
||||||
default:
|
default:
|
||||||
return NewLogger(path, DefaultRotateRule(path, backupFileDelimiter, options.keepDays,
|
rule = DefaultRotateRule(path, backupFileDelimiter, options.keepDays, options.gzipEnabled)
|
||||||
options.gzipEnabled), options.gzipEnabled)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return NewLogger(path, rule, options.gzipEnabled)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getWriter() Writer {
|
func getWriter() Writer {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package devserver
|
|||||||
type Config struct {
|
type Config struct {
|
||||||
Enabled bool `json:",default=true"`
|
Enabled bool `json:",default=true"`
|
||||||
Host string `json:",optional"`
|
Host string `json:",optional"`
|
||||||
Port int `json:",default=6470"`
|
Port int `json:",default=6060"`
|
||||||
MetricsPath string `json:",default=/metrics"`
|
MetricsPath string `json:",default=/metrics"`
|
||||||
HealthPath string `json:",default=/healthz"`
|
HealthPath string `json:",default=/healthz"`
|
||||||
EnableMetrics bool `json:",default=true"`
|
EnableMetrics bool `json:",default=true"`
|
||||||
|
|||||||
Reference in New Issue
Block a user