Results 509 comments of Martin Tournoij

It seems that error is coming from Hugo? `dial tcp 0.0.0.0:443` is a rather odd IP. Do you have some sort of DNS-based adblocking that might be returning that? Or...

Did just changing the width fix it for you @evexoio? If so, what exactly did you change? I ran in to the same problem last week, and I tried a...

I can't do anything with this; you'll need to either give more details on how to reproduce or track down the problem yourself.

I mean, there's no details here at all; not even how or where you're using it, or what kind of events are happening, or ... anything. The panic is triggered...

I added FSNOTIFY_DEBUG in #619.

Thanks; I can reproduce it with that fairly reliably. Reducing that to a test case seems a bit non-trivial, as it's pretty complex. I think what's going on that it...

Here's a basic test case: ``` func TestRemoveRace(t *testing.T) { tmp := t.TempDir() w := newCollector(t, tmp) w.collect(t) for i := 0; i < 100; i++ { go mkdirAll(t, tmp,...

> not sure when this changed Probably did; I'm pretty sure that https://github.com/arp242/RimWorld-RainingBlood/ used to work anyway. Haven't played/installed RimWorld in a few years.

What does it say when you use it with FSNOTIFY_DEBUG=1?

Smaller reproducible test case: ``` mkdir -p /dir/sub watch /dir watch /dir/sub mv /dir /dir-rename touch /dir-rename/sub/file Output: rename /dir create /dir/sub/file ``` Which is kind of expected, as the...