diff options
author | Kegsay <kegan@matrix.org> | 2020-09-02 13:47:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 13:47:31 +0100 |
commit | e473320e733484b1cc6da0588fd2ccf4affb3d24 (patch) | |
tree | 51385110bdfc89b82a8d005d77c9951f8db15e4e /build/scripts | |
parent | 02a73f29f861c637f30df4a2bb1fce400e481a3c (diff) |
Refactor roomserver/internal - split perform stuff out (#1380)
- New package `perform` which contains all `Perform` functions
- New package `helpers` which contains helper functions used by both
perform and query/input functions.
- Perform invite/leave have no idea how to `WriteOutputEvents` and this
is now returned from `PerformInvite` or `PerformLeave` respectively.
Still to do:
- RSAPI is fed into the inviter/joiner/leaver - this introduces circular
logic so will need to be removed.
- Put query operations in a `query` package.
- Put input operations (and output) in an `input` package.
- Factor out helper functions as much as possible, possibly rejigging the
storage layer in the process.
Diffstat (limited to 'build/scripts')
-rwxr-xr-x | build/scripts/complement.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/complement.sh b/build/scripts/complement.sh index 17ddea57..c1e52dde 100755 --- a/build/scripts/complement.sh +++ b/build/scripts/complement.sh @@ -15,5 +15,5 @@ tar -xzf master.tar.gz # Run the tests! cd complement-master -COMPLEMENT_BASE_IMAGE=complement-dendrite:latest go test -v ./tests +COMPLEMENT_BASE_IMAGE=complement-dendrite:latest go test -v -count=1 ./tests |