Attention is currently required from: pespin.
osmith has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/40481?usp=email )
Change subject: asp: Introduce support to configure and enable TCP keep-alive
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sigtran/+/40481?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: I2a9338053e741fb6dab94492c6bdc2badaf7afb1
Gerrit-Change-Number: 40481
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 18 Jun 2025 08:40:51 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: pespin.
osmith has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/libosmo-netif/+/40479?usp=email )
Change subject: stream: Support configuring TCP_USER_TIMEOUT parameter
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/libosmo-netif/+/40479?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Change-Id: I22c7df92b463cf4ca82854a12ec24337d53e8b20
Gerrit-Change-Number: 40479
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Wed, 18 Jun 2025 08:23:31 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40476?usp=email )
Change subject: epdg/testenv/run_osmo_epdg…: fix ip link ls output
......................................................................
epdg/testenv/run_osmo_epdg…: fix ip link ls output
In the code that waits until the tun device is available, fix the
silencing of stdout and stderr.
Change-Id: I8ce8824930e8841dddd7a67d178d5140e4f71b84
---
M epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, approved
diff --git a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
index 93853b8..439dccc 100755
--- a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
+++ b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
@@ -16,7 +16,7 @@
FOUND=0
for i in $(seq 1 10); do
sleep 1
- if ip link ls dev "$EPDG_TUN" 2>&1 >/dev/null; then
+ if ip link ls dev "$EPDG_TUN" >/dev/null 2>&1; then
FOUND=1
break
fi
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40476?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I8ce8824930e8841dddd7a67d178d5140e4f71b84
Gerrit-Change-Number: 40476
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40477?usp=email )
Change subject: epdg/testenv/run_osmo_epdg…: wait up to 30s
......................................................................
epdg/testenv/run_osmo_epdg…: wait up to 30s
Wait up to 30s for the tun device as waiting 10s is not enough if
jenkins is under high load.
Related: https://jenkins.osmocom.org/jenkins/job/ttcn3-epdg-test-net-next/29/console
Change-Id: Ia7298275b92f30efc40e9d6afa1abc8d7c5536d6
---
M epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
pespin: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
index 439dccc..99d43e8 100755
--- a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
+++ b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh
@@ -14,7 +14,7 @@
set +x
FOUND=0
-for i in $(seq 1 10); do
+for i in $(seq 1 30); do
sleep 1
if ip link ls dev "$EPDG_TUN" >/dev/null 2>&1; then
FOUND=1
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40477?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ia7298275b92f30efc40e9d6afa1abc8d7c5536d6
Gerrit-Change-Number: 40477
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>