Skip to content

Commit

Permalink
Merge pull request #1251 from ashwindasr/konflux-increase-yarn-instal…
Browse files Browse the repository at this point in the history
…l-timeout

[konflux] increase yarn install timeout
  • Loading branch information
ashwindasr authored Jan 6, 2025
2 parents cf8a6c8 + 54f6474 commit 74d53a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doozer/doozerlib/backend/rebaser.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ def _modify_cachito_commands(self, df_path):

# Due to network flakiness, yarn install commands error out due to insufficient retries.
# So increase timeout to 600000 ms, i.e. 10 mins
line = line.replace("yarn install", "yarn config set network-timeout 600000 && yarn install")
line = line.replace("RUN yarn", "RUN yarn config set network-timeout 600000 && yarn")
updated_lines.append(line)
line_commented = False

Expand Down

0 comments on commit 74d53a0

Please sign in to comment.