Bugfix: Read state from sysfs.

This commit is contained in:
Lukas Prause
2022-02-16 10:20:16 +01:00
parent 6faf81078e
commit 6f987583a3

View File

@@ -172,7 +172,7 @@ def is_hystart_activated():
"cat /sys/module/tcp_cubic/parameters/hystart", shell=True
)
)
== "1"
== 1
)
@@ -183,7 +183,7 @@ def is_tcp_probe_enabled():
"cat /sys/kernel/debug/tracing/events/tcp/tcp_probe/enable", shell=True
)
)
== "1"
== 1
)