diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-07-18 00:23:54 +0800 |
---|---|---|
committer | techknowlogick <techknowlogick@gitea.io> | 2019-07-17 12:23:54 -0400 |
commit | 0e2996caa19892d2adf0720074bcffefe3c7535d (patch) | |
tree | 57df9b23032f508f1dd3820c6a1e76aeeef67d47 /custom/conf | |
parent | acf6bd42c444062bb18352015db05987958c870f (diff) | |
download | gitea-0e2996caa19892d2adf0720074bcffefe3c7535d.tar.gz gitea-0e2996caa19892d2adf0720074bcffefe3c7535d.zip |
fix missing queue type on app.ini.sample (#7494)
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 0212964750..991a2a3e6b 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -281,7 +281,7 @@ DB_RETRY_BACKOFF = 3s ISSUE_INDEXER_TYPE = bleve ; Issue indexer storage path, available when ISSUE_INDEXER_TYPE is bleve ISSUE_INDEXER_PATH = indexers/issues.bleve -; Issue indexer queue, currently support: channel or levelqueue, default is levelqueue +; Issue indexer queue, currently support: channel, levelqueue or redis, default is levelqueue ISSUE_INDEXER_QUEUE_TYPE = levelqueue ; When ISSUE_INDEXER_QUEUE_TYPE is levelqueue, this will be the queue will be saved path, ; default is indexers/issues.queue |