Skip to content

Commit

Permalink
Reduce the limit
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Jul 10, 2024
1 parent 2ede5c8 commit b87cd5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/upgrader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interface Project {
const withoutNull = <T>(array: Array<T | null>) => array.
filter((element) => element !== null) as Array<T>;

const maxSimultaneousDeployments = 10;
const maxSimultaneousDeployments = 5;
// 10 minutes
const deployTimeout = 60e4;

Expand Down

0 comments on commit b87cd5b

Please sign in to comment.