Skip to content

Commit

Permalink
add missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewstevenson88 committed Aug 24, 2024
1 parent 7d0ec9a commit def4b4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cpp/common/tls_certificate_provider.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
#include <grpc/grpc_security.h>
#include <grpcpp/security/tls_certificate_provider.h>

#include "src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h"

namespace grpc {
namespace experimental {

Expand All @@ -49,7 +51,7 @@ FileWatcherCertificateProvider::Create(
const std::string& private_key_path,
const std::string& identity_certificate_path,
const std::string& root_cert_path, unsigned int refresh_interval_sec) {
auto provider = grpc_core::FileWatcherCertificateProvider::Create(
auto provider = ::grpc_core::FileWatcherCertificateProvider::Create(
private_key_path, identity_certificate_path, root_cert_path,
refresh_interval_sec);
if (!provider.ok()) {
Expand Down

0 comments on commit def4b4c

Please sign in to comment.