diff options
author | Magnus Hagander | 2019-06-19 20:44:25 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-06-19 20:44:25 +0000 |
commit | 5cdda4259af65fd84166bd25c0398f91b7f11838 (patch) | |
tree | c48e77d23b8f6c964c47dc1a4b84ecd34a0467a1 /loader/lib/varnish.py | |
parent | 26c509da2cb1b357823d07d7a6b6ec2abc30f2d9 (diff) |
Remove extra : at end of xkey
Diffstat (limited to 'loader/lib/varnish.py')
-rw-r--r-- | loader/lib/varnish.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/lib/varnish.py b/loader/lib/varnish.py index df74f37..8a4812b 100644 --- a/loader/lib/varnish.py +++ b/loader/lib/varnish.py @@ -22,7 +22,7 @@ class VarnishPurger(object): exprlist.append('pgam_%s/%s/%s' % p) else: # Purging individual thread - exprlist.append('pgat_%s:' % p) + exprlist.append('pgat_%s' % p) purgedict = dict(list(zip(['x%s' % n for n in range(0, len(exprlist))], exprlist))) purgedict['n'] = len(exprlist) r = requests.post(purgeurl, data=purgedict, headers={ |