Mark
Mark
It seems this file was last updated for 1.0.3. It is out of sync with the actual code. For example the index.d.ts file says: ``` /** * Set up artyom...
The linux System::get_user_by_id(&Uid) doesn't respect LDAP users. It looks like the [get_users_list()](https://github.com/GuillaumeGomez/sysinfo/blob/master/src/users.rs#L12) function only pulls local users from `/etc/passwd`. Hence `get_user_by_id` doesn't find the username for any process run by...
A session id is used to group processes within a session. For mac/bsd/linix it can be obtained from the [getsid](https://docs.rs/libc/0.2.124/i686-unknown-linux-gnu/libc/fn.getsid.html) system call For windows it can be found in the...
The CLI is failing with a false positive incorrect minimum dependency version. In the example below the active-directory plugin version 2.23 requires a minimum jenkins-configuration-as-code version of [1.35](https://github.com/jenkinsci/active-directory-plugin/blob/active-directory-2.23/pom.xml#L42). The update-center...
If a plugin cannot be found a more useful error message should be given than "Downloaded file is not a valid ZIP". For example some plugins have inconsistent names and...
Now that natlink is a module that can be installed with pip it has namespacing. References need to be updated to use the proper namespacing. `from natlinkcore import natlink` [example](https://github.com/dictation-toolbox/dragonfly/blob/master/dragonfly/engines/backend_natlink/engine.py#L130)
If using a custom registry that has a port specified the `cargo-upgrade upgrade` command will fail due to attempting to create a directory with a ':' in the name. It...
The jclouds library throws an NPE when logging doing a PUT request of a file. Looks like this [might be fixed by updating it to 2.3.0](http://mail-archives.apache.org/mod_mbox/jclouds-notifications/201911.mbox/%3CJIRA.13270881.1574828163000.228799.1574933821297@Atlassian.JIRA%3E). Stack trace: ``` May...
I've read the documentation and looked through the code but I don't see a way to set the authentication to use the ldap method. Is this supported? It might simply...
The sysinfo library does not refresh the exe of a process if it has already been loaded and has the same start time. However the exe can change such as...