Skip to content

Commit

Permalink
cli: increase app creation timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
eandre committed Sep 10, 2024
1 parent 5bff2d3 commit fb034aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cmd/encore/app/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func createAppOnServer(name string, cfg exampleConfig) (*platform.App, error) {
if _, err := conf.CurrentUser(); err != nil {
return nil, err
}
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
params := &platform.CreateAppParams{
Name: name,
Expand Down

0 comments on commit fb034aa

Please sign in to comment.