Skip to content

Commit

Permalink
fix: set default cpu to 1 on GCP (#661)
Browse files Browse the repository at this point in the history
* set default cpu to 1, fixed invalid cpu/concurrency defaults
  • Loading branch information
HomelessDinosaur authored Aug 12, 2024
1 parent 64b3383 commit 3414770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/gcp/common/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type GcpConfig struct {
}

var defaultCloudRunConfig = &GcpCloudRunConfig{
Cpus: 0.25,
Cpus: 1,
Memory: 512,
Timeout: 300,
MinInstances: 0,
Expand Down

0 comments on commit 3414770

Please sign in to comment.