(now)
| 95 | // numerical comparisons against ms-based cutoffs still work as expected. |
| 96 | let reservationSeq = 0; |
| 97 | function nextReservationToken(now) { |
| 98 | reservationSeq = (reservationSeq + 1) % 1000; |
| 99 | return now + reservationSeq / 1000; |
| 100 | } |
| 101 | |
| 102 | // Strict positive int env reader (mirrors the helper in client.js / |
| 103 | // conversation-pool.js). Used by the dynamic cloud probe path below; when |
no outgoing calls
no test coverage detected