From f8ed817cccff626c0b63f776c0c5203989c348a1 Mon Sep 17 00:00:00 2001 From: Abhishek Lekshmanan Date: Thu, 5 Apr 2018 19:06:16 +0200 Subject: [PATCH] qa: drop rfc2616 checking on civetweb Since newer versions of civetweb are also strict on rfc2616 checks let's enforce strict rfc2616 checks in s3tests Signed-off-by: Abhishek Lekshmanan --- qa/tasks/s3tests.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/qa/tasks/s3tests.py b/qa/tasks/s3tests.py index 89e5a34b3f0..430a123425f 100644 --- a/qa/tasks/s3tests.py +++ b/qa/tasks/s3tests.py @@ -248,10 +248,8 @@ def run_tests(ctx, config): """ assert isinstance(config, dict) testdir = teuthology.get_testdir(ctx) - attrs = ["!fails_on_rgw", "!lifecycle_expiration"] - # beast parser is strict about unreadable headers - if ctx.rgw.frontend == 'beast': - attrs.append("!fails_strict_rfc2616") + # civetweb > 1.8 && beast parsers are strict on rfc2616 + attrs = ["!fails_on_rgw", "!lifecycle_expiration", "!fails_strict_rfc2616"] for client, client_config in config.iteritems(): (remote,) = ctx.cluster.only(client).remotes.keys() args = [ -- 2.39.5