Skip to content

Commit

Permalink
rgw: mark asio frontend as experimental
Browse files Browse the repository at this point in the history
Users will need to set "rgw-asio-frontend" as an experimental
feature.

Signed-off-by: Matt Benjamin <[email protected]>
  • Loading branch information
mattbenjamin authored and rzarzynski committed Oct 21, 2016
1 parent 04057a0 commit 8143913
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rgw/rgw_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,8 @@ int main(int argc, const char **argv)
RGWFrontendConfig *config = fiter->second;
string framework = config->get_framework();
RGWFrontend *fe;
if (framework == "asio") {
if ((framework == "asio") &&
cct->check_experimental_feature_enabled("rgw-asio-frontend")) {
int port;
config->get_val("port", 80, &port);
RGWProcessEnv env{ store, &rest, olog, port };
Expand Down

0 comments on commit 8143913

Please sign in to comment.