mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-06 22:30:56 +03:00
fix some typos
This commit is contained in:
@@ -83,7 +83,7 @@ Alternately, you can [build from source](./docs/build-from-source.md).
|
|||||||
|
|
||||||
A full explanation of all configuration methods can be found [here](./docs/full-configuration.md).
|
A full explanation of all configuration methods can be found [here](./docs/full-configuration.md).
|
||||||
|
|
||||||
Please make sure to [initialize the data provider](#data-provider-initialization) before running the daemon!
|
Please make sure to [initialize the data provider](#data-provider-initialization-and-management) before running the daemon!
|
||||||
|
|
||||||
To start SFTPGo with the default settings, simply run:
|
To start SFTPGo with the default settings, simply run:
|
||||||
|
|
||||||
@@ -93,7 +93,7 @@ sftpgo serve
|
|||||||
|
|
||||||
Check out [this documentation](./docs/service.md) if you want to run SFTPGo as a service.
|
Check out [this documentation](./docs/service.md) if you want to run SFTPGo as a service.
|
||||||
|
|
||||||
### Data provider initialization and update
|
### Data provider initialization and management
|
||||||
|
|
||||||
Before starting the SFTPGo server please ensure that the configured data provider is properly initialized/updated.
|
Before starting the SFTPGo server please ensure that the configured data provider is properly initialized/updated.
|
||||||
|
|
||||||
|
|||||||
@@ -707,7 +707,7 @@ func (p BoltProvider) migrateDatabase() error {
|
|||||||
case 4:
|
case 4:
|
||||||
return updateBoltDatabaseFromV4(p.dbHandle)
|
return updateBoltDatabaseFromV4(p.dbHandle)
|
||||||
default:
|
default:
|
||||||
if dbVersion.Version > sqlDatabaseVersion {
|
if dbVersion.Version > boltDatabaseVersion {
|
||||||
providerLog(logger.LevelWarn, "database version %v is newer than the supported: %v", dbVersion.Version,
|
providerLog(logger.LevelWarn, "database version %v is newer than the supported: %v", dbVersion.Version,
|
||||||
boltDatabaseVersion)
|
boltDatabaseVersion)
|
||||||
logger.WarnToConsole("database version %v is newer than the supported: %v", dbVersion.Version,
|
logger.WarnToConsole("database version %v is newer than the supported: %v", dbVersion.Version,
|
||||||
|
|||||||
Reference in New Issue
Block a user