Sam Balana
Sam Balana
I've noticed that the `failWithError` option was added back in 2014 (see #126) and wasn't documented in the function description. This is especially important for people that want a custom...
As it turns out, Kubernetes automatically decodes the secret token for us: ```bash kubectl describe secret [ your default secret name ] | grep 'token:' ``` This could eliminate an...
I know in #23 you addressed that you made a simple library called tac to address the issue of Components not being allocated contiguously in memory. I saw that #23...
I was browsing your code and noticed that you don't have any support for browsers that don't support websockets. So my assumption would be that [this line](https://github.com/mikemintz/rethinkdb-websocket-client/blob/master/src/TcpPolyfill.js#L39) would fail since...
## Summary The `--test_case` CLI option currently only supports specifying full test names. This makes it tedious to run only a portion of a large test class (100+ tests) where...
**Description** While creating packetimpact tests for ICMP sockets, I noticed they allow receiving from IPv4 broadcast and multicast addresses while bound to the IPv4 any address (0.0.0.0). This behavior deviates...
Creation of the first packetimpact test for ICMP sockets have uncovered a discrepancy with Linux. ICMP sockets on gVisor do not allow sending to multicast or broadcast addresses, whereas this...
**Description** A discrepancy with Linux was found while improving a PacketImpact test for UDP socket send and receive. On Linux, UDP sockets do not receive traffic from the IPv4 all...
**Description** While writing a PacketImpact test for ICMPv6 sockets, I found a discrepancy with Linux. When bound to a unicast IPv6 address and sending to an IPv4 address, sendto returns...
**Description** While refactoring a PacketImpact test for UDP sockets, I found a discrepancy with Linux. When bound to an IPv4 address and sending to an IPv6 address, sendto returns `EINVAL`...