From b044d69c1184da4796bf338124a1e0f749e8ae68 Mon Sep 17 00:00:00 2001 From: Jay Chia Date: Tue, 1 Aug 2023 10:46:32 -0700 Subject: [PATCH] Fix nginx conf --- .../docker-compose/nginx-serve-static-files.conf | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/tests/integration/docker-compose/nginx-serve-static-files.conf b/tests/integration/docker-compose/nginx-serve-static-files.conf index b40ec50654..0c097a5096 100644 --- a/tests/integration/docker-compose/nginx-serve-static-files.conf +++ b/tests/integration/docker-compose/nginx-serve-static-files.conf @@ -40,21 +40,5 @@ http { location /503.html { return 503 "Sike it's a hardcoded 503!"; } - - # Simulate S3 endpoint for non-retryable errors to ensure that - # the native parquet reader throws nice errors - # - # The following error codes are considered retryable: - # https://github.com/aws/aws-sdk-cpp/blob/8a9550f1db04b33b3606602ba181d68377f763df/src/aws-cpp-sdk-core/include/aws/core/http/HttpResponse.h#L113-L131 - # 500/503/429/509/408/419/440/504/598/599 - location /s3-bucket-name/non-retryable-404-failure.parquet { - return 404 ' - - FooErrorCode - This is a mock error message - /s3-bucket-name/non-retryable-failure.html - 4442587FB7D0A2F9 -'; - } } }