1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-19 05:22:13 +03:00

Merge pull request #23 from matrix-org/bwindels/restlogs

spit out logs for creating REST users to figure out what is going on …
This commit is contained in:
Bruno Windels
2018-09-18 10:17:31 +02:00
committed by GitHub

View File

@@ -35,11 +35,12 @@ module.exports = class RestSessionCreator {
async createSession(username, password) {
await this._register(username, password);
console.log(` * created REST user ${username} ... done`);
const authResult = await this._authenticate(username, password);
return new RestSession(authResult);
}
_register(username, password) {
async _register(username, password) {
const registerArgs = [
'-c homeserver.yaml',
`-u ${username}`,
@@ -55,11 +56,14 @@ module.exports = class RestSessionCreator {
registerCmd
].join(';');
return exec(allCmds, {cwd: this.cwd, encoding: 'utf-8'}).catch((result) => {
try {
await exec(allCmds, {cwd: this.cwd, encoding: 'utf-8'});
} catch (result) {
const lines = result.stdout.trim().split('\n');
const failureReason = lines[lines.length - 1];
throw new Error(`creating user ${username} failed: ${failureReason}`);
});
const logs = (await exec("tail -n 100 synapse/installations/consent/homeserver.log")).stdout;
throw new Error(`creating user ${username} failed: ${failureReason}, synapse logs:\n${logs}`);
}
}
async _authenticate(username, password) {