Skip to content

Commit

Permalink
Support arm64 arch validation
Browse files Browse the repository at this point in the history
Adding value to list of acceptable architectures for record message
validation.

Signed-off-by: Alex Jaramillo <[email protected]>
  • Loading branch information
alexjch committed Aug 1, 2018
1 parent c324774 commit 4df418f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collector/collector/lib/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def validate_timestamp(timestamp):


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


def validate_host_type(host_type):
Expand Down

0 comments on commit 4df418f

Please sign in to comment.