Anuraag (Rag) Agrawal
Anuraag (Rag) Agrawal
Unfortunately frameworks like Gin and others define their own handler / middleware interfaces and don't use `http.Handler`. We currently have http middleware with this private method for handling an `http.Request`...
This seems reasonable to me, I would add `NewTransactionContext` to follow the standard naming convention, and http middleware could probably pass the request context by default
IMO Go made a mistake conflating data and deadline in context, and we indeed have had issues with how to deal with the latter before because of it. Adding some...
IIUC, and I know @M4tteoP has dug into this and maybe more on top of it, disruptive and flow actions also have special semantics such as there being only one...
Those hooks seem to make sense to me - I'm a bit hesitant on exposing `Transaction` though as it would give a lot of surface for footgunning. Ideally the information...
TransactionState is also mutable - basically we currently have Transaction as a view for use in middleware and TransactionState as a view for use in plugins. This would be more...
@maresb This is an old issue so hoping to bring it up, I ran into the same issue. It seems that when parsing `environment.yml`, the `#` is not handled correctly...
Ah sorry it wasn't clear. PIP supports parameters for vcs dependencies past `#` https://pip.pypa.io/en/stable/cli/pip_install/#vcs-support For example `python -m pip install -e 'git+https://git.repo/some_repo.git#egg=subdir&subdirectory=subdir_path' # install a python package from a repo...
Hi all - copying some points from the email thread on this. It can be useful to align with OWASP as there is a large ecosystem and a lot of...
I believe this is about adding HTTP host (e.g. zipkin.io) which is generally just one string, not machine hostname which will be one of many load balanced machines and thus...