Skip to content

Commit

Permalink
chore: Bump common repo version
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBNaughton authored and copybara-github committed Dec 17, 2024
1 parent 69b8c8d commit 93a7e4c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ python_register_toolchains("//builders/bazel")

http_archive(
name = "google_privacysandbox_servers_common",
# commit f2c4e4d 2024-12-05
sha256 = "8313d3d1987328a0004bee07caa469abe735c6f7b026e49643eb3533d6033cce",
strip_prefix = "data-plane-shared-libraries-f2c4e4dcb5a044bc3dae20c46ab66c1fe280991d",
# commit 3f61745 2024-12-13
sha256 = "338b805609e3e82c6bd538cd0e0766884dfaf2570b8df4aba2780b39a82d8b27",
strip_prefix = "data-plane-shared-libraries-3f61745d222b3f70fbdc95944aafd8fa8691a89b",
urls = [
"https://github.com/privacysandbox/data-plane-shared-libraries/archive/f2c4e4dcb5a044bc3dae20c46ab66c1fe280991d.zip",
"https://github.com/privacysandbox/data-plane-shared-libraries/archive/3f61745d222b3f70fbdc95944aafd8fa8691a89b.zip",
],
)

Expand Down
8 changes: 3 additions & 5 deletions components/data_server/server/key_fetcher_factory_cloud.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,10 @@ CloudKeyFetcherFactory::CreateKeyFetcherManager(
std::unique_ptr<PrivateKeyFetcherInterface> private_key_fetcher =
PrivateKeyFetcherFactory::Create(primary, {secondary},
kPrivateKeyCacheTtl, log_context_);
auto event_engine = std::make_unique<EventEngineExecutor>(
grpc_event_engine::experimental::GetDefaultEventEngine());
std::unique_ptr<KeyFetcherManagerInterface> manager =
KeyFetcherManagerFactory::Create(
kKeyRefreshFlowRunFrequency, std::move(public_key_fetcher),
std::move(private_key_fetcher), std::move(event_engine));
KeyFetcherManagerFactory::Create(kKeyRefreshFlowRunFrequency,
std::move(public_key_fetcher),
std::move(private_key_fetcher));
manager->Start();

return manager;
Expand Down

0 comments on commit 93a7e4c

Please sign in to comment.