diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-06-25 16:35:09 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-25 16:35:09 +0300 |
| commit | 017de519b38ff48249f986a0584f28d8ca9e3d69 (patch) | |
| tree | 4da9834a91d842ebb57b60d7ca52c4e2b6e6de79 /python | |
| parent | 6eb93578a33f27007c4ecda8b71efbd880a97653 (diff) | |
| parent | 1c94f3a6a6b92b629ca5a886c92ee6463e85e121 (diff) | |
| download | vyos-1x-017de519b38ff48249f986a0584f28d8ca9e3d69.tar.gz vyos-1x-017de519b38ff48249f986a0584f28d8ca9e3d69.zip | |
Merge pull request #40 from natali-rs1985/T7424-fix
T7424: Add missing hugepage memory configuration for config load tests
Diffstat (limited to 'python')
| -rw-r--r-- | python/vyos/vpp/config_verify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/vpp/config_verify.py b/python/vyos/vpp/config_verify.py index 9cfbfb7cd..4505d205f 100644 --- a/python/vyos/vpp/config_verify.py +++ b/python/vyos/vpp/config_verify.py @@ -252,7 +252,7 @@ def verify_vpp_memory(config: dict): if memory_required > available_memory: raise ConfigError( - 'Not enough free memory to start VPP: ' + 'Not enough free hugepage memory to start VPP: ' f'available: {round(available_memory / 1024 ** 3, 1)} GB, ' f'required: {round(memory_required / 1024 ** 3, 1)} GB. ' 'Please add kernel memory options for HugePages and reboot' |
