From 999de9c864b28e6e0e7b62406d1fe9669d5b5dc5 Mon Sep 17 00:00:00 2001 From: Jacky6 Date: Wed, 10 Jul 2024 17:53:10 +0800 Subject: [PATCH] fix(tools/mfg_gen): Allow encoding u64 and i64 --- tools/mass_mfg/mfg_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mass_mfg/mfg_gen.py b/tools/mass_mfg/mfg_gen.py index b3a9e0b188..33850026c8 100644 --- a/tools/mass_mfg/mfg_gen.py +++ b/tools/mass_mfg/mfg_gen.py @@ -72,7 +72,7 @@ def verify_keys_exist(values_file_keys, input_config_file): def verify_datatype_encoding(input_config_file): """ Verify datatype and encodings from config file is valid """ - valid_encodings = {'string', 'binary', 'hex2bin','u8', 'i8', 'u16', 'u32', 'i32','base64'} + valid_encodings = {'string', 'binary', 'hex2bin','u8', 'i8', 'u16', 'u32', 'i32', 'u64', 'i64','base64'} valid_datatypes = {'file','data','namespace'} with open(input_config_file,'r') as config_file: