Anupam Ghosh
Anupam Ghosh
I see "Testing needed" label has been added. @kYroL01 We can try deploying the build if it is available
Hi @showjason, I am using it inside a watcher can you tell me where to add `client_side_validation`. I tried the below code but it still fails with "_Invalid value for...
Apart from checking the open connection in IPVS table does it make sense to check the conntrack table on the host to see if there are any connection established with...
The xml formatted output has more information `conntrack -L -o xml -d 10.36.0.6` ```xml 103.35.124.22 10.36.0.6 10.36.0.6 103.35.124.22 597 0 1 3724150459 ``` Layer 4 `protonum` is 4 which means...
Thanks @aauren for looking at it! Yes, you got it correctly.
> Client retries its existing connection and is BGP hashed to node-3 (or any other node other than node-1) and it will still result in a connection refused right? Correct,...
Another idea I have is to delay the removal of pod endpoint from the IPVS table for the duration of its `terminationGracePeriodSeconds` or until the pod is terminated. This ensures...
Looking at the `sloppy_tcp` [patch](https://github.com/torvalds/linux/commit/c6c96c188336b2b95d5f14facd101f1e4165a9d3#diff-b3c62cbac4164ddef9ad7ac60936993eb5cc6c3f17b06ab29e91fbaafd1a5595L51) it seems that this feature just allows TCP ACK to behave similar to TCP SYN for getting the backend server ```diff /* No !th->ack check...
@aauren any thoughts on my previous comment?
Thanks @jamadden for looking at it! There are few things I want to point out here 1. We are actually passing a timeout to the requests.get call (Sorry didn't mention...