Lukas
Lukas
The installation tells the user to run pip with sudo: >If you are not installing in a [virtualenv](#virtual-environment-and-docker-installation), run with `sudo`: >> $ sudo pip install saws This is will...
Due to the fact that the classes have dynamically generated fields for the AWS resource properties, IDEs like PyCharm doesn't suggest those fields during autocompletion. For example: ```Python from troposphere...
I would like to propose an update to the auto-generated classes of troposphere, specifically to improve their usability in modern IDEs. Additionally this allows for easy value validation, which can...
Documentation is important for new users to understand how a library is used. While the readme provides some good examples for getting started, some of the more advanced topics are...
When building the C++ files during setup, interrogate fails because of an unrecognized argument. ``` python setup.py [1] ------------------------------------------------------------------------------- Render Pipeline Setup 1.3 ------------------------------------------------------------------------------- [ 01 ] Checking Panda3D Modules...
* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...) `CloudWatch` implements `ResettableInterface` (via `AbstractHandler`), but does nothing on resetting. That means that long running...
**Is your feature request related to a problem?** I have a long running process in symfony processing messages from a queue, so the kernel isn't restarted between traces. Currently it...
Currently there is only a [`PrometheusExporter`](https://github.com/open-telemetry/opentelemetry-php/blob/main/src/Contrib/Prometheus/PrometheusExporter.php) available to export metrics. otel-col can read prometheus metrics and convert them to OTLP, but it would be a lot nicer to avoid this...
A little lifetime oversight of mine: The `OscAddress` needs to store the address as a string otherwise it doesn't own it, thus the string passed to `new` must live at...
I've been trying to implement a dispatcher and noticed that the current matcher is a bit unergonomic to use. The `OscMessage`'s address is only checked for validity in the matcher....