powellnorma

Results 75 issues of powellnorma

After having inserted extra data to the joining table via the `extra_column_values` argument to `add_m2m`, how can I get those columns when using `get_m2m`. If not currently possible, it would...

When I use `sshfs host:/ mnt`, the current working directory gets mounted to `mnt`. Is it possible to let the sshfs server behave the way a cygwin compiled openssh server...

The following works fine: ```go func runPsCmd(psCmd string) { pthPs := `C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe` cmd := exec.Command(pthPs, "-Command", psCmd) cmd.Stderr = os.Stderr cmd.Stdout = os.Stdout cmd.Stdin = os.Stdin err := cmd.Start() if...

Using `ImpersonateFirefox` instead works fine ```go package main import ( "fmt" "log" "github.com/imroc/req/v3" ) func main(){ client := req.C().ImpersonateChrome() resp, err := client.R().Get("https://tuta.com/") if err != nil { log.Fatal(err) }...

Using ImpersonateChrome instead works fine. ```go package main import ( "fmt" "log" "github.com/imroc/req/v3" ) func main(){ client := req.C().ImpersonateFirefox() // tls: invalid signature by the server certificate: ECDSA verification failure...

Using `ImpersonateChrome` instead works fine. The error seems to be generated in processPushPromise: https://github.com/imroc/req/blob/5323efe519c828b9b97dc52f13386e007e5972b5/internal/http2/transport.go#L3058 ```golang package main import ( "fmt" "log" "github.com/imroc/req/v3" ) func main(){ client := req.C().ImpersonateFirefox() // connection...

I think all that would be needed is that the `persistConn` gets "removed". E.g. `decConnsPerHost` would have to be called I think, maybe more? I think the [http.Hijacker](https://pkg.go.dev/net/http#Hijacker) interface could...

I read this comment: https://github.com/imroc/req/blob/5323efe519c828b9b97dc52f13386e007e5972b5/internal/http2/client_conn_pool.go#L20-L22 But `cc.RoundTrip(new(http.Request))` leads to a panic: ``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x58e3d4] goroutine...

I think currently the way to do this is to presort the ptData before passing it to PowerTable? But since we already have implemented the sorting logic (maybe even with...