Andreas Sodeur
Andreas Sodeur
I bumped into this issue as well. This does not seem to be an issue with the `@computed` directive (ie it persists when you move directives to merge config) but...
Sorry, I did not manage to write-up what we are doing properly. As far as I understand the transport factory is created by `autobahn.twisted.component._create_transport_factory`. If the transport type is websocket...
We are currently using the linked [code](https://gist.github.com/asodeur/3ad6e4ba8e32eaf3e4e90d434351257b). This a minimal extension to `Component` to pass in extra headers. However, as @meejah mentions above a better approach is probably enhancing the...
Did a quick full-text search for 'reactor' and 'options'. `node/controller.py` line 467 looks suspicious. I'd think the reactor should be read from the environment instead of the worker config. Could...
I was hoping there might be some easy trick using `set_*_callback`. Adding a callback to change the recorded callstack is probably a no-go (not obvious how this could work and...
I think I got a prototype doing the tagging but I am struggleling with rewriting the statistics. Already failing to filter the stats for `tag == 1`. `YFuncStat.tag` always seems...
Attach my code below. The code accessing the tags is inside the `__main__` guard at the bottom. Looks to me as if there is an issue with the Python wrapper....
Thx, this was helpful. Below is a rough sketch of the idea. The resulting callgraph for `doit` looks ok. Still some issue to work-out 1. `doit`'s `ttot` needs to be...
Sorry to bother you again, but bumped into this: ```python class YFuncStat(YStat): ... def __eq__(self, other): if other is None: return False return self.full_name == other.full_name ``` Shouldn't comparison take...
Got a first [prototype](https://gist.github.com/asodeur/2a5d9101cc3a49b8181192ff56aafec2) by now. Turns-out you have to set a context var on the caller side of `loop.create_task` to correlate caller and callee (like in [doit](https://github.com/sumerc/yappi/issues/54#issuecomment-617087277) above). This...