Skip to content

Commit

Permalink
Increase fuji timeout (#2365)
Browse files Browse the repository at this point in the history
* increase fuji timeout to 15 minutes

* add warning
  • Loading branch information
felipemadero authored Nov 25, 2024
1 parent 7e4b017 commit 0978038
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const (
APIRequestLargeTimeout = 10 * time.Second
FastGRPCDialTimeout = 100 * time.Millisecond

FujiBootstrapTimeout = 5 * time.Minute
FujiBootstrapTimeout = 15 * time.Minute

SSHServerStartTimeout = 1 * time.Minute
SSHScriptTimeout = 2 * time.Minute
Expand Down
3 changes: 3 additions & 0 deletions pkg/node/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ func StartLocalNode(
return err
}
}
if network.Kind == models.Fuji {
ux.Logger.PrintToUser(logging.Yellow.Wrap("Warning: Fuji Bootstrapping can take several minutes"))
}
if err := preLocalChecks(anrSettings, avaGoVersionSetting, useEtnaDevnet, globalNetworkFlags); err != nil {
return err
}
Expand Down

0 comments on commit 0978038

Please sign in to comment.