diff options
author | Kristian Antonsen <kristian@derfor.dk> | 2020-04-15 02:44:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 02:44:08 +0200 |
commit | 0e4e14d0f53d9afed126868e7e2ccef74c73ae10 (patch) | |
tree | e634f94a776de3ae73e9e6698da3b19b0b6e939f /custom/conf | |
parent | d66b9a46908b83a4d94652a40fd1cd46af11f215 (diff) | |
download | gitea-0e4e14d0f53d9afed126868e7e2ccef74c73ae10.tar.gz gitea-0e4e14d0f53d9afed126868e7e2ccef74c73ae10.zip |
Replace references to cron.update_migration_post_id with cron.update_migration_poster_id in docs (#11068)
Across several files, references to cron.update_migration_post_id are made, although the actual setting is called cron.update_migration_poster_id according to modules/setting/cron.go (https://github.com/go-gitea/gitea/blob/10e2f291442fdc7efc31c02f5ffcba79a36db9ac/modules/setting/cron.go#L54).
Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
Diffstat (limited to 'custom/conf')
-rw-r--r-- | custom/conf/app.ini.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/conf/app.ini.sample b/custom/conf/app.ini.sample index 86224ab8c6..556f93a91d 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -853,7 +853,7 @@ SCHEDULE = @every 24h UPDATE_EXISTING = true ; Update migrated repositories' issues and comments' posterid, it will always attempt synchronization when the instance starts. -[cron.update_migration_post_id] +[cron.update_migration_poster_id] ; Interval as a duration between each synchronization. (default every 24h) SCHEDULE = @every 24h |