diff options
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel/bytestream_client.hpp')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bytestream_client.hpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bytestream_client.hpp b/src/buildtool/execution_api/remote/bazel/bytestream_client.hpp index 85e26078..8edaef3e 100644 --- a/src/buildtool/execution_api/remote/bazel/bytestream_client.hpp +++ b/src/buildtool/execution_api/remote/bazel/bytestream_client.hpp @@ -71,12 +71,9 @@ class ByteStreamClient { } }; - ByteStreamClient(std::string const& server, - Port port, - std::string const& user = "", - std::string const& pwd = "") noexcept { + ByteStreamClient(std::string const& server, Port port) noexcept { stub_ = google::bytestream::ByteStream::NewStub( - CreateChannelWithCredentials(server, port, user, pwd)); + CreateChannelWithCredentials(server, port)); } [[nodiscard]] auto IncrementalRead( |