Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 4df418f

Browse files
committed
Support arm64 arch validation
Adding value to list of acceptable architectures for record message validation. Signed-off-by: Alex Jaramillo <[email protected]>
1 parent c324774 commit 4df418f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/collector/lib/validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def validate_timestamp(timestamp):
137137

138138

139139
def validate_architecture(arch):
140-
return arch in ["armv7l", "armv6l", "amd64", "sparc64", "ppc64", "i686", "i386", "x86_64", "ppc"]
140+
return arch in ["armv7l", "armv6l", "aarch64", "amd64", "sparc64", "ppc64", "i686", "i386", "x86_64", "ppc"]
141141

142142

143143
def validate_host_type(host_type):

0 commit comments

Comments
 (0)