diff options
| author | Christian Breunig <christian@poessinger.com> | 2023-01-09 08:11:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-09 08:11:40 +0100 |
| commit | 4ec43156db761c613c3c69c4967f604662030bf9 (patch) | |
| tree | 221ebf8ac24164b42cc9261d93b132f2c8169b51 /src | |
| parent | a831f22d4c34bf947b0335e55573280b75c2bde0 (diff) | |
| parent | be48e153be982d88b2d09a9a8e3c09f8c1b620e9 (diff) | |
| download | vyatta-wanloadbalance-4ec43156db761c613c3c69c4967f604662030bf9.tar.gz vyatta-wanloadbalance-4ec43156db761c613c3c69c4967f604662030bf9.zip | |
Merge pull request #13 from sever-sever/T1311
load-balancing: T1311: Delete load-balancing connections
Diffstat (limited to 'src')
| -rw-r--r-- | src/lbdecision.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lbdecision.cc b/src/lbdecision.cc index bdfe2eb..119d0de 100644 --- a/src/lbdecision.cc +++ b/src/lbdecision.cc @@ -316,7 +316,9 @@ LBDecision::run(LBData &lb_data) //new request, bug 4112. flush conntrack tables if configured if (lb_data._flush_conntrack == true) { - execute("conntrack -F", stdout); + //execute("conntrack -F", stdout); + // Bug T1311 with "conntrack -F" and "conntrack-sync" + execute("conntrack --delete", stdout); execute("conntrack -F expect", stdout); } |
