mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #2657] S3 mounts with prefixes broken after latest commit #1269
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#1269
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @joshgarde on GitHub (Apr 7, 2025).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/2657
Additional Information
Version of s3fs being used (
s3fs --version)V1.95(commit:04a8258)
Version of fuse being used (
pkg-config --modversion fuse,rpm -qi fuseordpkg -s fuse)2.9.9
Provider (
AWS,OVH,Hetzner,iDrive E2, ...)AWS
Kernel information (
uname -r)6.1.129-138.220.amzn2023.x86_64
GNU/Linux Distribution, if applicable (
cat /etc/os-release)N/A
How to run s3fs, if applicable
s3fs syslog messages (
grep s3fs /var/log/syslog,journalctl | grep s3fs, ors3fs outputs)Details about issue
A recent commit has caused S3 mounts with prefixes to stop working. Reverting to commit
ad4646fresolves the issue.@chengzhycn commented on GitHub (Jul 5, 2025):
I met the same problem with the version 1.94 which installed by
apk add s3fs-fuse. But when I used the version 1.90 at the ubuntu, it worked well.I compared the debug log between the two versions, noticed that version 1.90 sent HTTP GET request like that:
it received HTTP code 200.
But the version 1.94 sent HTTP GET:
it received HTTP code 404 and mounted failed.
The behaviors obviously are not same. But I don't know what break changes made and why changed it between the two versions.