jcaesar

Results 29 issues of jcaesar

Playing around with exa on wasi, I ran into the following problem: ``` thread 'main' panicked at 'failed to spawn thread: Custom { kind: Other, error: "operation not supported on...

### Describe the bug `fd_readdir` [skips](https://github.com/wasmerio/wasmer/blob/0ebc872f062d6094261ff2c569dfb844e3824ab2/lib/wasi/src/syscalls/mod.rs#L1360) `cookie` directory entries. `cookie` is just an index into the sorted list of files in the directory. If that list changes between two `fd_readdir`...

bug
🕵️ needs investigation
🏚 stale
priority-medium
needs-tests

The following Rust code panics in webassembly.sh when compiled with rustc ≥ 1.57 (but runs fine on desktop wasmer). ```rust use std::io::Read; fn main() { let mut buffer = String::new();...

🐞 bug

The cause is rather simply that [server.py:41](https://github.com/softdevteam/mattermost-github-integration/blob/master/mattermostgithub/server.py#L41) tries to access a `repository` entry. The fix can be equally simple. ```diff diff --git a/mattermostgithub/server.py b/mattermostgithub/server.py index ad26bec..9daee73 100644 --- a/mattermostgithub/server.py +++...

![lfs](https://user-images.githubusercontent.com/1753388/155283250-cec9c06a-04b5-4f21-b49b-12efb6421e79.png)

I found some panics in this while playing around [with wapm](https://wapm.io/package/cowsay), and [made a PR](https://github.com/wapm-packages/cowsay/pull/2) showing and fixing some problematic inputs. Later I noticed that the wapm package is a...

Happens with human_sort 0.2.2 (140a09c9305e6d5e557e2ed7cbc68e05765a7d4213975b87cb04920689cc6219). To reproduce: ```rust fn main() { use human_sort::sort; let mut arr = [ "PowerTools/x86_64/os/repodata/9379911671413f8a51cd04665cd9bafc8200f927505008e8a11145034b53c776-other.xml.gz", "PowerTools/x86_64/os/repodata/43ed191200dbc7c83be76c3410f118f931bbe21ff6a58f5f549d0e351f3aea94-other.sqlite.xz", ]; sort(&mut arr); } ``` ``` $ env RUST_BACKTRACE=1 cargo...

When a path that is already a mount point is bind-mounted to itself, e.g. with ``` mount -ttmpfs - /foo mount -obind /foo /foo ``` a duplicate metric error occurs...

#159 added support for using shared-library-only builds of rdkafka, but only for linux. This repeats that for MacOS. This turned out to be necessary while switching rdkafka to CMake on...