Config: Include disable-webdav and http-compression in CLI report #2476
This commit is contained in:
parent
4ea795729a
commit
b47d71d659
1 changed files with 3 additions and 1 deletions
|
@ -58,9 +58,10 @@ func (c *Config) Report() (rows [][]string, cols []string) {
|
|||
// Feature Flags.
|
||||
{"read-only", fmt.Sprintf("%t", c.ReadOnly())},
|
||||
{"experimental", fmt.Sprintf("%t", c.Experimental())},
|
||||
{"disable-backups", fmt.Sprintf("%t", c.DisableBackups())},
|
||||
{"disable-webdav", fmt.Sprintf("%t", c.DisableWebDAV())},
|
||||
{"disable-settings", fmt.Sprintf("%t", c.DisableSettings())},
|
||||
{"disable-places", fmt.Sprintf("%t", c.DisablePlaces())},
|
||||
{"disable-backups", fmt.Sprintf("%t", c.DisableBackups())},
|
||||
{"disable-tensorflow", fmt.Sprintf("%t", c.DisableTensorFlow())},
|
||||
{"disable-faces", fmt.Sprintf("%t", c.DisableFaces())},
|
||||
{"disable-classification", fmt.Sprintf("%t", c.DisableClassification())},
|
||||
|
@ -113,6 +114,7 @@ func (c *Config) Report() (rows [][]string, cols []string) {
|
|||
{"http-host", c.HttpHost()},
|
||||
{"http-port", fmt.Sprintf("%d", c.HttpPort())},
|
||||
{"http-mode", c.HttpMode()},
|
||||
{"http-compression", c.HttpCompression()},
|
||||
|
||||
// Database.
|
||||
{"database-driver", c.DatabaseDriver()},
|
||||
|
|
Loading…
Reference in a new issue