mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-16 12:23:50 +01:00
Merge pull request #4057 from matrix-org/rav/use_correct_python
Use the right python when starting workers
This commit is contained in:
commit
6190abe8da
2 changed files with 3 additions and 1 deletions
1
changelog.d/4057.bugfix
Normal file
1
changelog.d/4057.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
synctl will use the right python executable to run worker processes
|
3
synctl
3
synctl
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright 2014-2016 OpenMarket Ltd
|
# Copyright 2014-2016 OpenMarket Ltd
|
||||||
|
# Copyright 2018 New Vector Ltd
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with 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):
|
def start_worker(app, configfile, worker_configfile):
|
||||||
args = [
|
args = [
|
||||||
"python", "-B",
|
sys.executable, "-B",
|
||||||
"-m", app,
|
"-m", app,
|
||||||
"-c", configfile,
|
"-c", configfile,
|
||||||
"-c", worker_configfile
|
"-c", worker_configfile
|
||||||
|
|
Loading…
Reference in a new issue