4xoc
4xoc
LDAP has a very specific password format where the `{}` part defines what type of password this is (for example `{SASL}someUsername`, no password is saved at all but delegated to...
I don't think this is possible at the moment. The crypto/ssh library that takes care of the SSH connection doesn't support the use of a config file or jumphost at...
Any thoughts on the very simple approach of reporting the number of existing elements in the SEL? Surely not ideal for every case but at least an indicator.
I can confirm that on Ubuntu 20.04 (focal) Nginx is still crashing when using `init_worker_by_lua_block`, even when the block is empty. Any progress on this? Any more details needed?
Unfortunately this just happens and afaik cannot be avoided. Due to the nature of the exporter having to run multiple cli commands that, depending on hardware model, can cause a...
I'm afraid my knowledge of Python and Django is close to nothing. From looking at things I would suspect [this](https://github.com/netbox-community/netbox/blob/develop/netbox/netbox/graphql/utils.py#L5) being the main cause. IDs are generally uint64 which may...
Apparently GraphQL doesn't support uint64 by default. One can create a [custom scalar](https://docs.graphene-python.org/en/latest/types/scalars/#custom-scalars) which should work for such cases.
Yeah I looked at interface_list definition and arguments of it where MTU must be string. An interface object itself returns int correctly. To rephrase point no 3 from observed behavior:...
> Is this the correct example? Note how all the IDs are of type "String" - in fact almost everything is "String" except some Booleans. That's exactly it. I believe...
The result from graphql certainly is a string and is required to be a string for queries too. I believe that int32 is incorrect too, some time ago all IDs...