Commit a01f0b5
Honor documented contract: timeoutMs <= 0 means no timeout in sendAndWait
src/main/java/com/github/copilot/sdk/CopilotSession.java
Skip scheduling the timeout task when timeoutMs <= 0, matching the
Javadoc contract that 0 or negative means "no timeout". Previously,
timeoutMs=0 would schedule an immediate timeout, contradicting the
docs. The timeout cancel in the whenComplete cleanup is now guarded
for the null case.
src/test/java/com/github/copilot/sdk/ZeroTimeoutContractTest.java (new)
TDD test that asserts the documented contract: calling sendAndWait
with timeoutMs=0 should not cause the future to complete with a
TimeoutException. Uses Mockito to stub JsonRpcClient.invoke().
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent a1668c7 commit a01f0b5
File tree
2 files changed
+75
-16
lines changed- src
- main/java/com/github/copilot/sdk
- test/java/com/github/copilot/sdk
2 files changed
+75
-16
lines changedLines changed: 22 additions & 16 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
421 | 421 | | |
422 | 422 | | |
423 | 423 | | |
424 | | - | |
425 | | - | |
426 | | - | |
427 | | - | |
428 | | - | |
429 | | - | |
430 | | - | |
431 | | - | |
432 | | - | |
433 | | - | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
| 427 | + | |
434 | 428 | | |
435 | | - | |
436 | | - | |
437 | | - | |
| 429 | + | |
| 430 | + | |
| 431 | + | |
| 432 | + | |
| 433 | + | |
| 434 | + | |
| 435 | + | |
| 436 | + | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
438 | 443 | | |
439 | | - | |
440 | | - | |
441 | 444 | | |
442 | 445 | | |
443 | 446 | | |
| 447 | + | |
444 | 448 | | |
445 | 449 | | |
446 | 450 | | |
447 | 451 | | |
448 | 452 | | |
449 | 453 | | |
450 | | - | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
451 | 457 | | |
452 | 458 | | |
453 | 459 | | |
| |||
Lines changed: 53 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
0 commit comments