Skip to content

Commit

Permalink
Merge pull request #102 from guyco-redis/guyc-aarch64
Browse files Browse the repository at this point in the history
Fixed arch validation for aarch64 architectures.
  • Loading branch information
alonre24 authored Oct 31, 2023
2 parents 64318ba + 3e93eea commit 9e7407d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RAMP/unpacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def _validate_metadata(metadata):
reason="Empty module file name",
error_code="module_file_missing")

if metadata["architecture"] not in {"x86_64", "arm64v8"}:
if metadata["architecture"] not in {"x86_64", "aarch64"}:
raise UnpackerPackageError(message=INVALID_METADATA,
reason="Architecture must be 64 bits",
error_code="module_architecture_not_supported")
Expand Down

0 comments on commit 9e7407d

Please sign in to comment.