Merge pull request #4057 from matrix-org/rav/use_correct_python

Use the right python when starting workers
pull/14/head
Amber Brown 6 years ago committed by GitHub
commit 6190abe8da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/4057.bugfix
  2. 3
      synctl

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

@ -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

Loading…
Cancel
Save