diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2025-10-15 11:27:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-15 11:27:39 -0700 |
| commit | 3d25f206c83e893d6dc5ea419a8702f0f44655e0 (patch) | |
| tree | 8eed0317efd9b93199525b531bf18b08abbd658f /test | |
| parent | ffc45a538d535c2cc9f374918c7db68c09809299 (diff) | |
| download | seaweedfs-3d25f206c83e893d6dc5ea419a8702f0f44655e0.tar.xz seaweedfs-3d25f206c83e893d6dc5ea419a8702f0f44655e0.zip | |
S3: Signature verification should not check permissions (#7335)
* Signature verification should not check permissions - that's done later in authRequest
* test permissions during signature verfication
* fix s3 test path
* s3tests_boto3 => s3tests
* remove extra lines
Diffstat (limited to 'test')
| -rw-r--r-- | test/s3/fix_s3_tests_bucket_conflicts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/s3/fix_s3_tests_bucket_conflicts.py b/test/s3/fix_s3_tests_bucket_conflicts.py index 9fb71684a..bc83efe03 100644 --- a/test/s3/fix_s3_tests_bucket_conflicts.py +++ b/test/s3/fix_s3_tests_bucket_conflicts.py @@ -268,7 +268,7 @@ get_new_bucket = _sw_get_new_bucket def main() -> int: s3_tests_path = os.environ.get("S3_TESTS_PATH", "s3-tests") - init_file_path = os.path.join(s3_tests_path, "s3tests_boto3", "functional", "__init__.py") + init_file_path = os.path.join(s3_tests_path, "s3tests", "functional", "__init__.py") print("Applying s3-tests patch for bucket creation idempotency...") print(f"Target repo path: {s3_tests_path}") if not os.path.exists(s3_tests_path): |
