mediaapi/config: Fix max_file_size_bytes YAML tag

This commit is contained in:
Robert Swain 2017-05-18 11:58:41 +02:00
parent c5cd5a93b9
commit 2fca4bbd65

View file

@ -27,7 +27,7 @@ type MediaAPI struct {
BasePath types.Path `yaml:"base_path"`
// The maximum file size in bytes that is allowed to be stored on this server.
// Note that remote files larger than this can still be proxied to a client, they will just not be cached.
MaxFileSizeBytes types.ContentLength `yaml:"base_path"`
MaxFileSizeBytes types.ContentLength `yaml:"max_file_size_bytes"`
// The postgres connection config for connecting to the database e.g a postgres:// URI
DataSource string `yaml:"database"`
}