set track_quota to 2 as default

This commit is contained in:
Nicola Murino 2019-08-01 09:24:35 +02:00
parent 170e3113e1
commit 1566e43cd7
3 changed files with 9 additions and 5 deletions

View file

@ -84,7 +84,7 @@ The `sftpgo.conf` configuration file contains the following sections:
- `target_path`, added for `rename` action only
- **"data_provider"**, the configuration for the data provider
- `driver`, string. Supported drivers are `sqlite`, `mysql`, `postgresql`
- `name`, string. Database name
- `name`, string. Database name. For driver `sqlite` this can be the database name relative to the config dir or the absolute path to the SQLite database.
- `host`, string. Database host. Leave empty for driver `sqlite`
- `port`, integer. Database port. Leave empty for driver `sqlite`
- `username`, string. Database user. Leave empty for driver `sqlite`
@ -129,7 +129,7 @@ Here is a full example showing the default config:
"connection_string":"",
"users_table":"users",
"manage_users":1,
"track_quota":1
"track_quota":2
},
"httpd":{
"bind_port":8080,

View file

@ -151,7 +151,9 @@ func TestInitialization(t *testing.T) {
func TestBasicSFTPHandling(t *testing.T) {
usePubKey := false
user, err := api.AddUser(getTestUser(usePubKey), http.StatusOK)
u := getTestUser(usePubKey)
u.QuotaSize = 6553600
user, err := api.AddUser(u, http.StatusOK)
if err != nil {
t.Errorf("unable to add user: %v", err)
}
@ -629,7 +631,9 @@ func TestMaxSessions(t *testing.T) {
func TestQuotaFileReplace(t *testing.T) {
usePubKey := false
user, err := api.AddUser(getTestUser(usePubKey), http.StatusOK)
u := getTestUser(usePubKey)
u.QuotaFiles = 1000
user, err := api.AddUser(u, http.StatusOK)
if err != nil {
t.Errorf("unable to add user: %v", err)
}

View file

@ -23,7 +23,7 @@
"connection_string":"",
"users_table":"users",
"manage_users":1,
"track_quota":1
"track_quota":2
},
"httpd":{
"bind_port":8080,