Skip to content

Commit 1ef1237

Browse files
committed
Replace http-parser
1 parent a70d6d8 commit 1ef1237

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

cookbooks/aws-parallelcluster-slurm/resources/slurm_dependencies/slurm_dependencies_alinux2023.rb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
use 'partial/_slurm_dependencies_common'
1616

1717
def dependencies
18-
%w(json-c-devel perl perl-Switch lua-devel dbus-devel)
18+
%w(json-c-devel perl perl-Switch lua-devel dbus-devel llhttp)
1919
end
2020

2121
action :install_extra_dependencies do
2222
# http parser is no longer maintained, therefore Amazon Linux 2023 does have have the package in OS repos
2323
# https://docs.aws.amazon.com/linux/al2023/release-notes/removed-AL2023.4-AL2.html
2424
# Following https://slurm.schedmd.com/related_software.html#jwt for Installing Http-parser
25-
bash 'Install http-parser' do
26-
code <<-HTTP_PARSER
27-
set -e
28-
git clone --depth 1 --single-branch -b v2.9.4 https://github.com/nodejs/http-parser.git http_parser
29-
cd http_parser
30-
make
31-
make install
32-
HTTP_PARSER
33-
end
25+
# bash 'Install http-parser' do
26+
# code <<-HTTP_PARSER
27+
# set -e
28+
# git clone --depth 1 --single-branch -b v2.9.4 https://github.com/nodejs/http-parser.git http_parser
29+
# cd http_parser
30+
# make
31+
# make install
32+
# HTTP_PARSER
33+
# end
3434
end

0 commit comments

Comments
 (0)