Skip to content

Commit

Permalink
Fix password providers not working on Synapse v1.1.0
Browse files Browse the repository at this point in the history
Fixes a regression introduced during the upgrade to
Synapse v1.1.0 (in 2b3865c).

Since Synapse v1.1.0 upgraded to Python 3.7
(matrix-org/synapse#5546),
we need to use a different modules directory when mounting
password provider modules.
  • Loading branch information
spantaleev committed Jul 4, 2019
1 parent 73158e6 commit b841390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/matrix-synapse/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ matrix_synapse_systemd_required_services_list: ['docker.service']
# List of systemd services that matrix-synapse.service wants
matrix_synapse_systemd_wanted_services_list: []

matrix_synapse_in_container_python_packages_path: "/usr/local/lib/python3.6/site-packages"
matrix_synapse_in_container_python_packages_path: "/usr/local/lib/python3.7/site-packages"

# Specifies which template files to use when configuring Synapse.
# If you'd like to have your own different configuration, feel free to copy and paste
Expand Down

0 comments on commit b841390

Please sign in to comment.