Skip to content

Commit 52c7102

Browse files
committed
Sort dependencies in Cargo.toml
1 parent 940a0b0 commit 52c7102

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ jobs:
120120
echo "UPLINKS_BEFORE=$uplinks" >> "$GITHUB_ENV"
121121
echo "Gateway $mac had $uplinks uplinks before reconnect test"
122122
123-
- name: Wait for semtech-udp disconnect timeout (35s)
123+
- name: Wait for semtech-udp disconnect timeout (65s)
124124
run: |
125-
echo "Waiting 35s for PULL_DATA timeout to trigger ClientDisconnected..."
126-
sleep 35
125+
echo "Waiting 65s for disconnect (30s timeout + 30s cache check interval)..."
126+
sleep 65
127127
128128
- name: Verify gateway disconnected
129129
run: |
@@ -132,7 +132,7 @@ jobs:
132132
connected=$(echo "$response" | jq '.connected')
133133
echo "Gateway connected: $connected"
134134
if [ "$connected" != "false" ]; then
135-
echo "Expected gateway to be disconnected after 35s timeout"
135+
echo "Expected gateway to be disconnected after 65s wait"
136136
exit 1
137137
fi
138138

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ once_cell = "1"
3131
prometheus = "0.13"
3232
qr2term = "0.3"
3333
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
34+
semtech-udp = { git = "https://github.com/lthiery/semtech-udp.git", branch = "configurable-disconnect-timeout", default-features = false, features = ["server"] }
3435
serde = { version = "1.0", features = ["derive"] }
3536
serde_json = "1.0"
3637
tokio = { version = "1.48", features = ["full"] }
@@ -41,7 +42,6 @@ tracing-subscriber = { version = "0", default-features = false, features = [
4142
"fmt",
4243
"std",
4344
] }
44-
semtech-udp = { git = "https://github.com/lthiery/semtech-udp.git", branch = "configurable-disconnect-timeout", default-features = false, features = ["server"] }
4545
triggered = "0.1"
4646

4747
[patch.crates-io]

0 commit comments

Comments
 (0)