Skip to content

Commit ee8ad3f

Browse files
committed
maybe fix #7742 -- at least increase the timeout to 5 minutes (from 30 seconds) and add warning about pluto taking a while
1 parent 26812f3 commit ee8ad3f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/packages/frontend/project/named-server-panel.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,14 @@ code completion, snippets, code refactoring, and embedded Git.`,
6666
},
6767
pluto: {
6868
longName: "Julia Pluto.jl",
69-
description: "Reactive notebooks for Julia.",
69+
description:
70+
"Reactive notebooks for Julia. NOTE: This can take a long time to start, so be patient.",
7071
usesBasePath: false,
7172
icon: "julia",
7273
},
7374
rserver: {
7475
longName: R_IDE,
75-
description: `This is an integrated development environment (IDE) for R. It is provided without any modifications. DISCLAIMER: Posit Software, PBC (formerly RStudio, PBC) IS IN NO WAY ASSOCIATED WITH COCALC.`,
76+
description: `This is an integrated development environment (IDE) for R, sometimes called "R Studio". It is provided without any modifications. DISCLAIMER: Posit Software, PBC (formerly RStudio, PBC) IS IN NO WAY ASSOCIATED WITH COCALC.`,
7677
usesBasePath: false,
7778
icon: "r",
7879
},
@@ -150,6 +151,7 @@ export const NamedServerPanel: React.FC<Props> = ({
150151
style={{ textAlign: "center", fontSize: "14pt", margin: "15px" }}
151152
>
152153
<LinkRetry
154+
maxTime={1000 * 60 * 5}
153155
autoStart
154156
href={serverURL(project_id, name)}
155157
loadingText="Launching server..."
@@ -225,6 +227,7 @@ export function ServerLink({
225227
const { icon, longName, description } = getServerInfo(name);
226228
return (
227229
<LinkRetry
230+
maxTime={1000 * 60 * 5}
228231
href={serverURL(project_id, name)}
229232
loadingText="Launching server..."
230233
tooltip={mode === "flyout" ? description : undefined}

0 commit comments

Comments
 (0)