edgecomllc / eupf

5G User Plane Function (UPF) based on eBPF
Apache License 2.0
95 stars 14 forks source link

About modifying TRex load profile #517

Closed s5uishida closed 6 months ago

s5uishida commented 6 months ago

Hi,

I think it would be better to change the indentation of register(), regarding Trex load profile explained in load-testing.md

--- gtp_1pkt_simple.py.orig     2023-12-19 14:01:12.688029193 +0900
+++ gtp_1pkt_simple.py  2023-12-19 13:17:31.795909126 +0900
@@ -24,5 +24,5 @@
         # create 1 stream
         return [ self.create_stream() ]

-    def register():
-        return STLS1()
+def register():
+    return STLS1()
pirog-spb commented 6 months ago

Hi @s5uishida

Yes, you absolutely right.

Thanks for pointing it out!