Tyler Goodlet
3a0817ff55
Skip `advanced_faults/` subset in docs examples tests
2023-01-29 14:55:02 -05:00
Tyler Goodlet
7fddb4416b
Handle `mp` spawn method cases in test suite
2023-01-29 14:55:02 -05:00
Tyler Goodlet
4f8586a928
Wrap ex in new test, change dir helpers to use `pathlib.Path`
2023-01-29 14:55:02 -05:00
Tyler Goodlet
fb9ff45745
Move example to a new `advanced_faults` egs subset dir
2023-01-29 14:55:02 -05:00
Tyler Goodlet
36a83cb306
Refine example to drop IPC mid-stream
...
Use a task nursery in the subactor to spawn tasks which cancel the IPC
channel mid stream to simulate the most concurrent case we're likely to
see. Make `main()` accept a `debug_mode: bool` for parametrization. Fill
out detailed comments/docs on this example.
2023-01-29 14:55:02 -05:00
Tyler Goodlet
158569adae
Add WIP example of silent IPC breaks while streaming
2023-01-29 14:55:02 -05:00
Tyler Goodlet
c47575997a
Expand nested case to include error prop and breakpointing
2022-10-14 19:42:23 -04:00
Tyler Goodlet
c0dd5d7ffc
Adjust multi-daemon test to be more deterministic
2022-10-14 19:42:23 -04:00
Tyler Goodlet
10eeda2d2b
Use built-ins for all data-structure-type annotations
2022-09-15 23:41:28 -04:00
Tyler Goodlet
56c19093bb
Add basic module-not-found when opening a ctx eg.
2022-08-02 12:17:06 -04:00
Tyler Goodlet
2a61aa099b
Move pydantic-click hang example to new dir, skip in test suite
2022-08-02 12:16:58 -04:00
Tyler Goodlet
4fd924cfd2
Make example a subpkg for `python -m <mod>` testing
2022-07-27 11:40:02 -04:00
Tyler Goodlet
fe0fd1a1c1
Add example that triggers bug #302
2022-07-27 11:40:02 -04:00
Tyler Goodlet
dd23e78de1
Add back in async gen loop
2022-07-27 11:40:02 -04:00
Tyler Goodlet
bb732cefd0
Drop high log level in ctx example
2022-07-27 11:40:02 -04:00
Tyler Goodlet
21dccb2e79
A `.open_context()` example that causes a hang!
...
Finally! I think this may be the root issue we've been seeing in
production in a client project.
No idea yet why this is happening but the fault-causing sequence seems
to be:
- `.open_context()` in a child actor
- enter the debugger via `tractor.breakpoint()`
- continue from that entry via `c` command in REPL
- raise an error just after inside the context task's body
Looking at logging it appears as though the child thinks it has the tty
but no input is accepted on the REPL and a further `ctrl-c` results in
some teardown but also a further hang where both parent and child become
unresponsive..
2022-07-27 11:40:02 -04:00
Tyler Goodlet
99c4319940
Fix example name typo
2022-07-27 11:40:02 -04:00
Tyler Goodlet
42f9d10252
Add a pre-started breakpoint example
2022-07-27 11:40:02 -04:00
Tyler Goodlet
98de2fab31
Add context test that opens an inter-task-channel that errors
2022-07-14 16:13:12 -04:00
Tyler Goodlet
73d252e09e
Emphasize `asyncio` only with sleeps
2021-12-17 09:38:54 -05:00
Tyler Goodlet
b463841019
Add infected `asyncio` echo server example
2021-12-17 09:38:04 -05:00
Tyler Goodlet
949aa9c405
Lol. should probably push the example code...
2021-12-10 12:48:05 -05:00
Tyler Goodlet
7b9d410c4d
Adjust remaining examples and tests for non-backpressure default
2021-12-05 19:52:09 -05:00
Tyler Goodlet
546e1b2fa3
Drop unecessary partial
2021-11-04 10:41:25 -04:00
Tyler Goodlet
4cbb8641de
Add an `open_actor_cluster()` usage example
2021-11-02 15:37:36 -04:00
Tyler Goodlet
8ba10315c1
Fix type path to new `_supervise` mod
2021-10-23 15:54:40 -04:00
Tyler Goodlet
b14699d40b
Adjust debugger tests to expect depth > 1 crashes
...
With the new fixes to the trio spawner we can expect that both root
*and* depth > 1 nursery owning actors will now not clobber any children
that are in debug (either via breakpoint or through crashing). The tests
changed now include more checks which ensure the 2nd level parent-ish
actors also bubble up through into `pdb` and don't kill any of their
(crashed) children before they're done themselves debugging.
2021-10-14 13:39:46 -04:00
Tyler Goodlet
ace1b1312c
Terminate async gen example caller to avoid (benign) errors in console output
2021-08-02 21:49:15 -04:00
Tyler Goodlet
674fbbc6b3
Docs and comments tidying
2021-08-01 10:44:13 -04:00
Tyler Goodlet
13b76c9439
Add fast fail test using the context api
2021-07-31 12:46:40 -04:00
Tyler Goodlet
63bdddd0c9
Add debug example that causes pdb stdin clobbering
2021-07-31 12:46:40 -04:00
Tyler Goodlet
240f591234
Add 2-way streaming example to readme and scripts
2021-07-31 12:10:25 -04:00
Tyler Goodlet
0551756e22
Use trio.run() in windows tests
2021-05-07 11:21:40 -04:00
Tyler Goodlet
4798d3b5db
Drop lingering rpc_module_paths refs
2021-05-07 11:21:40 -04:00
Tyler Goodlet
98a0594c26
Drop `tractor.run()` from all examples
2021-05-07 11:21:40 -04:00
Tyler Goodlet
b1f657e246
De-compact async with tuple on 3.8-
...
Turns out can't use the nicer syntax before python 3.9 (even though it
doesn't seem documented anywhere?).
Relates to #207
2021-04-28 16:35:15 -04:00
Tyler Goodlet
5a5e6baad1
Update all examples to new streaming API
2021-04-28 12:23:08 -04:00
Tyler Goodlet
1f1619c730
Convert all test suite sync funcs
2021-04-27 12:08:30 -04:00
Tyler Goodlet
3766731de5
Add a single func ex for our first one
2021-02-27 14:25:12 -05:00
Tyler Goodlet
8ee9007798
Reorg and rejig flow
...
Thanks to @richardsheridan for many suggestions!
2021-02-25 09:10:18 -05:00
Tyler Goodlet
4a512bc879
Compress terminal cmd line lens
2021-02-25 09:10:18 -05:00
Tyler Goodlet
b7b2436bc1
Remove tractor run from some debug examples
2021-02-24 13:14:40 -05:00
Tyler Goodlet
a93321e48e
Don't run stdlib example as part of test set
2021-02-21 15:41:21 -05:00
Tyler Goodlet
f7e1c526c5
Add `aclosing()` around asyn gen loop
2021-02-21 14:08:23 -05:00
Tyler Goodlet
a90a2b8787
Contain the error
2021-02-21 14:08:23 -05:00
Tyler Goodlet
da8c8c1773
Add concise readme example
2021-02-21 14:08:23 -05:00
Tyler Goodlet
57a24cdcf8
More comments
2021-02-21 14:08:23 -05:00
Tyler Goodlet
9b07e9ad7c
Yield results on demand using a mem chan
2021-02-21 14:08:23 -05:00
Tyler Goodlet
3c320f467f
Remove use of tractor.run()
2021-02-21 14:08:23 -05:00
Tyler Goodlet
2555765882
Make new paralellism example space
2021-02-21 14:08:23 -05:00