Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch for v14.2.1 #90

Open
wants to merge 4 commits into
base: origin-v14.2.1-1733464277
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
commit patch 19349042
  • Loading branch information
turly221 committed Dec 6, 2024
commit f1db90de79d20103ea0ad6fa95beacc9187820e7
3 changes: 3 additions & 0 deletions src/rgw/rgw_rest_swift.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2545,6 +2545,9 @@ bool RGWSwiftWebsiteHandler::is_web_dir() const
return false;
} else if (subdir_name.back() == '/') {
subdir_name.pop_back();
if (subdir_name.empty()) {
return false;
}
}

rgw_obj obj(s->bucket, std::move(subdir_name));
Expand Down