powellnorma

Results 106 comments of powellnorma

> but kind of hard to test if the error only occurs sporadically Today I tested: 1. Cancel Task that does DB Operation (insert) after different delays 2. Do many...

Thank you again for your explanation. > the second transaction resolves, the row already exists, so we get an error Ok, I would expect that since the transaction is resolved...

I think that it would be good if JSONB would transparently encode anything that is put into it, no matter the type - So also a str should get json...

> It should be possible with a 'ReverseLookup' (https://github.com/piccolo-orm/piccolo/pull/599), when we use a 'RIGHT JOIN' to the subquery, I think? Alternatively, would it be possible to use the ReverseLookup in...

> I suppose I want to add that changing from this / is the root of the current drive, to / is the drive-space root is a breaking change of...

How to add the an additional server option? Can you please help out? Edit: Ok fixed in latest commit

Isn't it the sftp server that answers with what the content of `/` is? Currently for some reason it just gives me the entries of the current working directory the...

I use the example from here: https://github.com/gliderlabs/ssh/blob/master/_examples/ssh-sftpserver/sftp.go It seems to use the default `RequestServer` Handler? Do you have an idea why it behaves the way I described for `/`?

I think it would make sense to put here, in `handlePacket`: https://github.com/pkg/sftp/blob/22452ea54d294fb7f574e5180f300e098c58557e/server.go#L177-L180 a call to a new `handleSepcialPath` function, that is implemented per OS. In `server_windows.go` we then check if...

Happy new year! > Again, one doesn’t just list a directory, first you SSH_FXP_OPENDIR and then you issue SSH_FXP_READDIR packets to read entries of that directory. This means we must...