You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge branch 'develop' of github.com:matrix-org/sytest into anoa/dendrite_whitelist_annotation
* 'develop' of github.com:matrix-org/sytest: (42 commits)
Fix OFFLINE support for the sytest-synapse docker image (#858)
Add support for running worker mode against redis (#857)
route GET account_data requests to client_reader (#855)
Test that users receive updates for their own devices (#854)
Add tests for SSO + user interactive authentication. (#845)
Modify login tests to be spec compliant
Make message history pagination test less flaky (#851)
Small comment fixes for consistency (#808)
Change room_fixture to run matrix_create_room_synced by default (#848)
Update dendrite docs with new whitelist/blacklist info (#849)
Add test for querying remote public rooms list with local server_name (#847)
Add more logging to "Guest user can set display names" (#846)
Add test for updating room aliases on upgraded room join (#844)
Add tests to ensure that the operation cannot be modified during interactive auth. (#830)
fix the CAS login test (#829)
Update NOT_FOUND error to BAD_ALIAS error to be spec compliant. (#837)
Missing bits
Use r0 instead of 'unstable' for joined_members|rooms
Add test to optionally keep other sessions when modifying a user's password. (#832)
Remove tests that call query_auth endpoint. (#827)
...
Copy file name to clipboardExpand all lines: docker/base.Dockerfile
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,3 @@ ENV PGHOST=/var/run/postgresql
60
60
ENV PGDATA=$PGHOST/data
61
61
ENV PGUSER=postgres
62
62
RUN for ver in `ls /usr/lib/postgresql | head -n 1`; do su -c '/usr/lib/postgresql/'$ver'/bin/initdb -E "UTF-8" --lc-collate="C" --lc-ctype="C" --username=postgres' postgres; done
63
-
64
-
# Turn off all the fsync stuff for postgres
65
-
RUN for ver in /etc/postgresql/*/main; do mkdir -p $ver/conf.d/; echo -e "fsync=off\nfull_page_writes=off" >> $ver/conf.d/fsync.conf; done
0 commit comments