Skip to content

Commit

Permalink
fix(backup): use https to access fds, instead of http (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhao liwei authored Mar 25, 2020
1 parent b0e20fd commit 7df14f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dist/block_service/fds/fds_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fds_service::~fds_service() {}
error_code fds_service::initialize(const std::vector<std::string> &args)
{
galaxy::fds::FDSClientConfiguration config;
config.enableHttps(false);
config.enableHttps(true);
config.setEndpoint(args[0]);
const std::string &access_key = args[1];
const std::string &secret_key = args[2];
Expand Down

0 comments on commit 7df14f0

Please sign in to comment.