Skip to content

Commit

Permalink
Don't use 'Aggregate initialization from a parenthesized list' featur…
Browse files Browse the repository at this point in the history
…e when constructing THandleOpsQueueConfig (#2345)
  • Loading branch information
SvartMetal authored Oct 24, 2024
1 parent 8d6c709 commit dcaf644
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cloud/filestore/libs/daemon/vhost/bootstrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,10 @@ void TBootstrapVhost::InitEndpoints()
Scheduler,
StatsRegistry,
ProfileLog),
THandleOpsQueueConfig(
Configs->VhostServiceConfig->GetHandleOpsQueuePath(),
Configs->VhostServiceConfig->GetHandleOpsQueueSize()));
THandleOpsQueueConfig{
.PathPrefix = Configs->VhostServiceConfig->GetHandleOpsQueuePath(),
.MaxQueueSize = Configs->VhostServiceConfig->GetHandleOpsQueueSize(),
});

EndpointManager = CreateEndpointManager(
Logging,
Expand Down

0 comments on commit dcaf644

Please sign in to comment.