Max Truxa

Results 26 comments of Max Truxa

`node_exporter_binary_local_dir` does this already, doesn't it?

That task [does not run if you set `node_exporter_binary_local_dir`](https://github.com/cloudalchemy/ansible-node-exporter/blob/18ff8f8833b1e357ce91bee6832c3a3d16e709f2/tasks/install.yml#L53). Are you sure you set the var correctly? Try inserting a debug task right before the block to see if the...

@lucasoares Taking a quick look at #905, isn't that what [`zap.Namespace()`](https://pkg.go.dev/go.uber.org/zap#Namespace) is for?

Quick workaround using a decorator: ```py from functools import wraps def zeroconf_handler(handler): # `wrapper`'s argument names are important! @wraps(handler) def wrapper(zeroconf, service_type, name, state_change): handler(zeroconf, service_type, name, state_change) return wrapper...

Minimal repro [on Godbolt](https://godbolt.org/z/168raraza). To reproduce locally: ```shell cat - >demo.cpp

> There is now an env var to select the LE server. The env var was added in stable-10133 and is named `LETSENCRYPT_ACME_SERVER` (even though the release notes say something...