Skip to content

Commit

Permalink
logging the value of kernel versions
Browse files Browse the repository at this point in the history
  • Loading branch information
umfranci committed Sep 6, 2024
1 parent f7dd63a commit 74ef01f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion microsoft/testsuites/network/networksettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ def verify_device_rss_hash_key_change(self, node: Node, log: Logger) -> None:
# supports RSS Hash key change. This can be found and later
# enhanced after running tests.
min_supported_kernel = str(linux_info.kernel_version)

log.info(f"verify_device_rss_hash_key_change --- Kernel Version: {linux_info.kernel_version}")
log.info(f"verify_device_rss_hash_key_change --- Minimum Supported Kernel Version: {min_supported_kernel}")
if linux_info.kernel_version < min_supported_kernel:
raise SkippedException(
f"The kernel version {linux_info.kernel_version} does not support"
Expand Down

0 comments on commit 74ef01f

Please sign in to comment.