Peter Law
Peter Law
A potential gotcha here is that the `rc` version comparisons have changed between `distutils` and `packaging`: ``` python In [1]: from distutils.version import LooseVersion, StrictVersion In [2]: from packaging.version import...
Thanks for those additional details. > * I think 4th linked issue can be closed; however, it's better to verify once before closing. What does verification look like here? Given...
Hrm, ok. I'm currently running gunicorn with the default worker type and that does seem to work. My reading of gunicorns docs indicate that the master process doesn't actually load...
My current setup is using gunicorn without calling `--preload` and that seems to work. Not using `--preload` under gunicorn seems to be the default, though the open telemetry docs seem...
I've just tested a toy application under gunicorn and uWSGI, using both their `--preload` and `--lazy-apps` modes (and not) respectively using https://gist.github.com/PeterJCLaw/5e6fd585d0c620496c82ca926ce50f67. All four configurations seem to work ok --...
Unfortunately while it looks like the `BatchSpanProcessor` does actually work fine, the `PeriodicExportingMetricReader` appears not to. I've not tested it under all the various configurations previously discussed, however I have...
Hrm, the uWSGI side of this may be somewhat resolvable by users. Ish. Via https://stackoverflow.com/a/72601192 and https://github.com/unbit/uwsgi/pull/2388 it seems that uWSGI has some extra options which can be used to...
Possibly related to this -- if the imported thing starts in column 1 then it is liable to be removed completely: ``` python def func(): from sr.comp.cli.deploy import ( BOLD,...
Cross linking: https://github.com/gristlabs/asttokens/issues/107
Here's a more minimal cut-down which appears to fail in the same way: `'\ry.y\n'`. Attempting to cut down further (either by removing the attribute access, leaving just `y`, or changing...