Skip to content

Commit 4d8b679

Browse files
authored
increase per-process file descriptor limit (#219)
1 parent ad05898 commit 4d8b679

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
bugfixes:
3+
- Run leapp with increased per-process file descriptor limit
4+
...

roles/analysis/tasks/analysis-leapp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
ansible.builtin.shell: >
6969
set -o pipefail;
7070
export PATH={{ os_path }};
71+
ulimit -n 16384;
7172
leapp preupgrade --report-schema=1.2.0
7273
{{ leapp_preupg_opts }}
7374
{{ leapp_enable_repos_args }}

roles/upgrade/tasks/leapp-upgrade.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
ansible.builtin.shell: >
6363
set -o pipefail;
6464
export PATH={{ os_path }};
65+
ulimit -n 16384;
6566
leapp upgrade --report-schema=1.2.0
6667
{{ leapp_upgrade_opts }}
6768
{{ leapp_enable_repos_args }}

0 commit comments

Comments
 (0)