Skip to content

Instantly share code, notes, and snippets.

@zhangclb
zhangclb / output.txt
Created July 23, 2016 13:47
uliweb gevent race condition
~$ prun "t1: curl -s localhost:8000/t1?v=1" "t2: curl -s localhost:8000/t2?v=2"
1 t1: curl -s localhost:8000/t1?v=1
2 t2: curl -s localhost:8000/t2?v=2
t2: t2: v=2, v_after_sleep=1
t2: --- end ---
t1: t1: v=1, v_after_sleep=1
t1: --- end ---