Skip to content

Commit 4ac69ee

Browse files
Increase timeout (#310)
* Increase timeout * Version 24 * Build
1 parent a6a0937 commit 4ac69ee

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

backend/fastrtc/templates/component/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18817,7 +18817,7 @@ function b7(n, e, t) {
1881718817
() => {
1881818818
h({ type: "connection_timeout" });
1881918819
},
18820-
5e3
18820+
1e4
1882118821
);
1882218822
Bi(q, ie, f === "send" ? null : a, z.offer, we, "video", oe, p, void 0, m).then((fe) => {
1882318823
clearTimeout(U), ie = fe;
@@ -19712,7 +19712,7 @@ function n8(n, e, t) {
1971219712
() => {
1971319713
o({ type: "connection_timeout" });
1971419714
},
19715-
5e3
19715+
1e4
1971619716
);
1971719717
Bi(null, f, h, c.offer, m, "video", v).then((b) => {
1971819718
clearTimeout(A), t(10, f = b);
@@ -20394,7 +20394,7 @@ function M8(n, e, t) {
2039420394
() => {
2039520395
c({ type: "connection_timeout" });
2039620396
},
20397-
5e3
20397+
1e4
2039820398
);
2039920399
Bi(W, A, S, v.offer, b, "audio", y).then((q) => {
2040020400
clearTimeout(oe), A = q;
@@ -21598,7 +21598,7 @@ function dp(n, e, t) {
2159821598
() => {
2159921599
z({ type: "connection_timeout" });
2160021600
},
21601-
5e3
21601+
1e4
2160221602
);
2160321603
Bi(ue, oe, a === "send" ? null : W, R.offer, q, "audio", z, f, j, v).then((le) => {
2160421604
clearTimeout(N), oe = le;

frontend/shared/InteractiveAudio.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
const timeoutId = setTimeout(() => {
215215
// @ts-ignore
216216
_on_change_cb({ type: "connection_timeout" });
217-
}, 5000);
217+
}, 10000);
218218
219219
start(
220220
stream,

frontend/shared/StaticAudio.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
const timeoutId = setTimeout(() => {
7878
// @ts-ignore
7979
on_change_cb({ type: "connection_timeout" });
80-
}, 5000);
80+
}, 10000);
8181
8282
start(
8383
stream,

frontend/shared/StaticVideo.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
const timeoutId = setTimeout(() => {
7373
// @ts-ignore
7474
on_change_cb({ type: "connection_timeout" });
75-
}, 5000);
75+
}, 10000);
7676
7777
start(
7878
null,

frontend/shared/Webcam.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
const timeoutId = setTimeout(() => {
184184
// @ts-ignore
185185
on_change_cb({ type: "connection_timeout" });
186-
}, 5000);
186+
}, 10000);
187187
188188
start(
189189
stream,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "hatchling.build"
88

99
[project]
1010
name = "fastrtc"
11-
version = "0.0.23"
11+
version = "0.0.24"
1212
description = "The realtime communication library for Python"
1313
readme = "README.md"
1414
license = "MIT"

0 commit comments

Comments
 (0)