Haw Loeung
Haw Loeung
Could set up a tmpfs mount and point awaylog_file there.
> look, the decision to implement `-ssl_ciphers` only, seems silly. > > why did you not implement the capability to choose the SSL and the TLS version also along with...
Thinking more about this, I think with the message line #, we can store it in a map (channel and message/thread ID) and then compare with the previous one and...
Sure, planning to try reproduce it when I have time and see if it's easily fixed. It may even be to do with the introduction of an additional IRC client/proxy...
So I guess this is just fallout from switching to using buffered channels? With the fix switching back to unbuffered channels, `u.eventChan = make(chan *bridge.Event)` or `u.eventChan = make(chan *bridge.Event,...
IIUC, in handleWsActionPost() (https://github.com/42wim/matterircd/blob/master/bridge/mattermost/mattermost.go#L813), a single message with multiple lines is split into multiple messages and put into the buffered channel (https://github.com/42wim/matterircd/pull/383). Unfortunately, per https://stackoverflow.com/a/25795236, with buffered channels, we can't...
> Well, we have 1 goroutine handling them and the get put in in order, so that's why I don't understand it or I must be missing something Oh, just...
Yeah, definitely using a version with https://github.com/42wim/matterircd/pull/419 applied. I wasn't able to easily reproduce it locally either. I'll have another go at reproducing it with debug/trace enabled this weekend.
An update here, still haven't come across this yet and wasn't able to reproduce it myself. I did stumble on https://github.com/42wim/matterircd/issues/420 with a PR to fix that though so all...
Seen it today, with the latest matterircd. Sadly, while running without debug/trace logging. @guilhermepiccoli did you end up sanitising the logs you had?