2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 20:49:01 +00:00

chore: rename setup_redis to skip_redis

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2020-03-05 22:59:59 +05:30
parent 4c173ded26
commit fceb2725c4
No known key found for this signature in database
GPG Key ID: 75507BE256F40CED
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ from bench.utils import find_executable
from bench.app import use_rq
from bench.config.common_site_config import get_config
def setup_procfile(bench_path, yes=False, setup_redis=True):
def setup_procfile(bench_path, yes=False, skip_redis=False):
config = get_config(bench_path=bench_path)
procfile_path = os.path.join(bench_path, 'Procfile')
if not yes and os.path.exists(procfile_path):
@ -15,7 +15,7 @@ def setup_procfile(bench_path, yes=False, setup_redis=True):
use_rq=use_rq(bench_path),
webserver_port=config.get('webserver_port'),
CI=os.environ.get('CI'),
setup_redis=setup_redis)
skip_redis=skip_redis)
with open(procfile_path, 'w') as f:
f.write(procfile)

View File

@ -1,4 +1,4 @@
{% if setup_redis %}
{% if not skip_redis %}
redis_cache: redis-server config/redis_cache.conf
redis_socketio: redis-server config/redis_socketio.conf
redis_queue: redis-server config/redis_queue.conf

View File

@ -147,7 +147,7 @@ def init(path, apps_path=None, no_procfile=False, no_backups=False,
redis.generate_config(path)
if not no_procfile:
setup_procfile(path, setup_redis=skip_redis_config_generation)
setup_procfile(path, skip_redis=skip_redis_config_generation)
if not no_backups:
setup_backups(bench_path=path)