jlamanna

Results 5 issues of jlamanna

If a request that triggered an upgrade from HTTP/1.1 -> HTTP/2 contained a body, it would not be replayed by the server as a HTTP/2 data frame. This would result...

This test for len(cloned) == 0 prevents EOR updates from reaching the BMP server: https://github.com/osrg/gobgp/blob/master/pkg/server/server.go#L854 EORs can be sent with no paths and as independent BGP update messages. This seems...

Add a callback for getting the request object so data could be posted.

On Linux, Netlink provides NDA_CACHEINFO which carries timestamps about when ARP/ND was updated, used, and confirmed. ``` struct nda_cacheinfo { __u32 ndm_confirmed; __u32 ndm_used; __u32 ndm_updated; __u32 ndm_refcnt; }; ```...

When using persistent flags, the subcommand flags seem to be lost in the suggestions. Minimal reproduction here: ```go package main import ( "fmt" "github.com/spf13/cobra" shell "github.com/brianstrauch/cobra-shell" ) var ( rootCmd...