You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 26, 2025. It is now read-only.
* Set default start timeout to 10 minutes
* Bump nhost/functions to 0.1.1
* Start "functions" container first and provide feedback to a user if it takes too long
* Measure the time taken to start in debug mode
* Remove unnecessary volume
HealthCheck: c.functionsServiceHealthcheck(time.Second*1, time.Minute*30), // 30 minutes is the maximum allowed time for a "functions" service to start, see more below
359
+
// Probe failure during that period will not be counted towards the maximum number of retries
360
+
// However, if a health check succeeds during the start period, the container is considered started and all
361
+
// consecutive failures will be counted towards the maximum number of retries.
Copy file name to clipboardExpand all lines: nhost/service/manager.go
+64-7Lines changed: 64 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,10 @@ import (
19
19
"time"
20
20
)
21
21
22
+
const (
23
+
slowStartWaitMsg="It takes more than usual to start the nhost project. Most likely because CLI needs to pull js dependencies inside a container. Please wait..."
0 commit comments