mirror of https://github.com/vector-im/riot-web
spit out logs for creating REST users to figure out what is going on with the CI server
parent
f26c50cdaa
commit
42c1b95b7c
|
@ -35,11 +35,12 @@ module.exports = class RestSessionCreator {
|
||||||
|
|
||||||
async createSession(username, password) {
|
async createSession(username, password) {
|
||||||
await this._register(username, password);
|
await this._register(username, password);
|
||||||
|
console.log(` * created REST user ${username} ... done`);
|
||||||
const authResult = await this._authenticate(username, password);
|
const authResult = await this._authenticate(username, password);
|
||||||
return new RestSession(authResult);
|
return new RestSession(authResult);
|
||||||
}
|
}
|
||||||
|
|
||||||
_register(username, password) {
|
async _register(username, password) {
|
||||||
const registerArgs = [
|
const registerArgs = [
|
||||||
'-c homeserver.yaml',
|
'-c homeserver.yaml',
|
||||||
`-u ${username}`,
|
`-u ${username}`,
|
||||||
|
@ -55,11 +56,14 @@ module.exports = class RestSessionCreator {
|
||||||
registerCmd
|
registerCmd
|
||||||
].join(';');
|
].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 lines = result.stdout.trim().split('\n');
|
||||||
const failureReason = lines[lines.length - 1];
|
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) {
|
async _authenticate(username, password) {
|
||||||
|
|
Loading…
Reference in New Issue