Use the right python when starting workers

We should use the same python to start the workers as we do for the main
synapse (ie, the same one used to run synctl.)
This commit is contained in:
Richard van der Hoff 2018-10-18 21:04:34 +01:00
parent 2baebace6a
commit c69026a758
2 changed files with 3 additions and 1 deletions

1
changelog.d/4057.bugfix Normal file
View file

@ -0,0 +1 @@
synctl will use the right python executable to run worker processes

3
synctl
View file

@ -1,6 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -86,7 +87,7 @@ def start(configfile):
def start_worker(app, configfile, worker_configfile):
args = [
"python", "-B",
sys.executable, "-B",
"-m", app,
"-c", configfile,
"-c", worker_configfile