Compare commits

...

4 Commits

Author SHA1 Message Date
Valere
169984163c update logs 2026-02-10 14:03:23 +01:00
Valere
7de47a1dfe try adding the missing file? 2026-02-10 13:53:59 +01:00
Valere
a10de30079 fix broken netlify deploy 2026-02-10 12:48:48 +01:00
Valere
286c88b8c0 test log 2026-02-10 12:29:46 +01:00
5 changed files with 29 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ jobs:
- name: Add config file
run: |
if [ "${{ inputs.package }}" = "full" ]; then
curl -s "https://raw.githubusercontent.com/${{ inputs.pr_head_full_name }}/${{ inputs.pr_head_ref }}/config/config_netlify_preview_sdk.json" > webapp/config.json
curl -s "https://raw.githubusercontent.com/${{ inputs.pr_head_full_name }}/${{ inputs.pr_head_ref }}/config/config_netlify_preview.json" > webapp/config.json
fi
- name: ☁️ Deploy to Netlify
id: netlify

View File

@@ -0,0 +1,20 @@
{
"default_server_config": {
"m.homeserver": {
"base_url": "https://call-unstable.ems.host",
"server_name": "call-unstable.ems.host"
}
},
"ssla": "https://static.element.io/legal/element-software-and-services-license-agreement-uk-1.pdf",
"matrix_rtc_session": {
"wait_for_key_rotation_ms": 3000,
"membership_event_expiry_ms": 180000000,
"delayed_leave_event_delay_ms": 18000,
"delayed_leave_event_restart_ms": 4000,
"network_error_retry_ms": 100
},
"sentry": {
"environment": "netlify-pr-preview",
"DSN": "https://b1e328d49be3402ba96101338989fb35@sentry.tools.element.io/41"
}
}

View File

@@ -224,7 +224,7 @@ export class Initializer {
this.initStep(resolve);
},
(e) => {
logger.error("Failed to load config", e);
logger.error(`Failed to load config for Element Call: ${e}`);
},
);
}

View File

@@ -1555,7 +1555,9 @@ export function createCallViewModel$(
matrixLivekitMembers$.pipe(
map((members) => members.value),
tap((v) => {
logger.debug("matrixLivekitMembers$ updated (exported)", v);
logger.debug(
`matrixLivekitMembers$ updated (exported) ${v.length} members`,
);
}),
),
),

View File

@@ -154,8 +154,11 @@ export class Connection {
"[Connection " + opts.transport.livekit_service_url + "]",
);
this.logger.info(
`constructor: ${opts.transport.livekit_service_url} roomId: ${this.roomId} withSfuConfig?: ${opts.existingSFUConfig ? JSON.stringify(opts.existingSFUConfig) : "undefined"}`,
`Creating connection to ${opts.transport.livekit_service_url}, jwt auth version ${opts.forceJwtEndpoint}`,
);
// this.logger.info(
// `constructor: ${opts.transport.livekit_service_url} roomId: ${this.roomId} withSfuConfig?: ${opts.existingSFUConfig ? JSON.stringify(opts.existingSFUConfig) : "undefined"}`,
// );
const { transport, client, scope } = opts;
this.scope = scope;