Nuno Silva
Nuno Silva
These changes make GPU accounting work with slurm 19 (at least for my installation) and should help with testing different outputs in #38. The sinfo parsing change is from https://github.com/vpenso/prometheus-slurm-exporter/issues/38#issuecomment-796005476....
Hi! I'm willing to contribute a minimal CI/CD workflow for the project using GitHub actions (just building and running tests). Is this something you'd be interested on having? Let me...
The `LocalBroadcastManager` is part of the Android support library, which is [no longer maintained](https://developer.android.com/reference/android/support/v4/content/LocalBroadcastManager.html?hl=en). Therefore, `android.support.v4.content.LocalBroadcastManager` class used by https://github.com/eclipse/paho.mqtt.android/blob/3cb8af72f21b56ba72a6a6ddf3066d07d42f80b5/org.eclipse.paho.android.service/src/main/java/org/eclipse/paho/android/service/MqttAndroidClient.java#L58 is deprecated. This has caused many issues already (e.g. #378...
This fixes #397 by adding support for reading the MAC address from PROGMEM. I wanted to do it using an overloaded begin() method, but it turns out that it's not...
LxTerminal already implements an "audible bell" feature. However, it would be useful to have lxterminal run an external command whenever a bell character (`\a`) is printed. The use-case I have...
I found it hard to find out what each Node's attribute mean. Some documentation would make it easier to use your project.
[BUG] "Failed to watch... the server could not find the requested resource" messages printed in logs
**Software version numbers** State the version numbers of applications involved in the bug. * Kubernetes version: v1.19.6-eks-49a6c0 * Kyverno version: v1.3.6 **Describe the bug** Kyverno logs continually print: ``` E0622...
In #164, a `|| $(MAKE) vendor-install` was added to the `vendor-install` target to help with "poor network circumstances": https://github.com/gluster/gluster-prometheus/blob/3ebaacc2c690223f77fc93f5f237ab5065138660/Makefile#L82-L85 However, this leads to an infinite fork loop when `dep` fails...
In https://github.com/gluster/gluster-prometheus/blob/3ebaacc2c690223f77fc93f5f237ab5065138660/Makefile#L82-L85 `@$(DEPENV) dep ensure -v -vendor-only || $(MAKE) vendor-install` leads to an infinite fork loop when `dep` fails. `|| $(MAKE) vendor-install` should be removed.
The `GzipLogRequest` class is using a `gzip.GzipFile` class backed by an `io.BytesIO` stream: https://github.com/logzio/logzio_aws_serverless/blob/c1cf511ed9e291ec3fa9b76ed9352a0a8c51dbca/python3/shipper/shipper.py#L38-L39 The `GzipLogRequest.close()` method closes the `GzipFile`: https://github.com/logzio/logzio_aws_serverless/blob/c1cf511ed9e291ec3fa9b76ed9352a0a8c51dbca/python3/shipper/shipper.py#L69-L70 However, as per [class gzip.GzipFile](https://docs.python.org/3/library/gzip.html#gzip.GzipFile): > Calling a GzipFile...