Skip to content

Commit

Permalink
Merge pull request #8706 from nimrod-becker/backport_to_5_18
Browse files Browse the repository at this point in the history
Backport to 5.18
  • Loading branch information
nimrod-becker authored Jan 21, 2025
2 parents 82d4224 + 6c81d9e commit 5b73c2b
Show file tree
Hide file tree
Showing 15 changed files with 691 additions and 333 deletions.
6 changes: 5 additions & 1 deletion src/deploy/NVA_build/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ RUN dnf update -y -q --nobest && \
COPY ./src/deploy/NVA_build/install_arrow_build.sh ./src/deploy/NVA_build/install_arrow_build.sh
ARG BUILD_S3SELECT_PARQUET=0
RUN ./src/deploy/NVA_build/install_arrow_build.sh $BUILD_S3SELECT_PARQUET
RUN dnf install -y -q wget unzip which vim python3 boost-devel libcap-devel && \
RUN dnf install -y -q wget unzip which vim python3.9 boost-devel libcap-devel && \
dnf group install -y -q "Development Tools" && \
dnf clean all

# It's not important to report this failure (fails for Centos9)
RUN alternatives --auto python3 || exit 0

RUN version="2.15.05" && \
wget -q -O nasm-${version}.tar.gz https://github.com/netwide-assembler/nasm/archive/nasm-${version}.tar.gz && \
tar -xf nasm-${version}.tar.gz && \
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/RPM_build/noobaa.spec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ URL: https://www.noobaa.io/
Source0: %{noobaatar}

BuildRequires: systemd
BuildRequires: python3
BuildRequires: python3.9
BuildRequires: make
BuildRequires: gcc-c++
BuildRequires: boost-devel
Expand Down
3 changes: 2 additions & 1 deletion src/endpoint/iam/iam_rest.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ const RPC_ERRORS_TO_IAM = Object.freeze({
INVALID_ACCESS_KEY_ID: IamError.InvalidClientTokenId,
DEACTIVATED_ACCESS_KEY_ID: IamError.InvalidClientTokenIdInactiveAccessKey,
NO_SUCH_ACCOUNT: IamError.AccessDeniedException,
NO_SUCH_ROLE: IamError.AccessDeniedException
NO_SUCH_ROLE: IamError.AccessDeniedException,
VALIDATION_ERROR: IamError.ValidationError,
});

const ACTIONS = Object.freeze({
Expand Down
Loading

0 comments on commit 5b73c2b

Please sign in to comment.