diff options
author | robot-piglet <[email protected]> | 2023-09-06 13:36:27 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2023-09-06 13:51:13 +0300 |
commit | 291c29aec65235767baebd70a945d5b347377c69 (patch) | |
tree | 0db206a40ff064d0272786077a1f27375f378542 | |
parent | 06ac3179abd374710a51ff065185329771ea801b (diff) |
Intermediate changes
-rw-r--r-- | yt/yql/plugin/bridge/plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/yql/plugin/bridge/plugin.cpp b/yt/yql/plugin/bridge/plugin.cpp index a69a37f9875..95d78d32ee7 100644 --- a/yt/yql/plugin/bridge/plugin.cpp +++ b/yt/yql/plugin/bridge/plugin.cpp @@ -75,11 +75,11 @@ public: TBridgeYqlPluginOptions bridgeOptions { .MRJobBinary = options.MRJobBinary.data(), .UdfDirectory = options.UdfDirectory.data(), - .ClusterCount = static_cast<int>(bridgeClusters.size()), + .ClusterCount = ssize(bridgeClusters), .Clusters = bridgeClusters.data(), .DefaultCluster = defaultCluster, .OperationAttributes = operationAttributesString.data(), - .OperationAttributesLength = static_cast<int>(operationAttributesString.size()), + .OperationAttributesLength = ssize(operationAttributesString), .YTTokenPath = options.YTTokenPath.data(), .LogBackend = &options.LogBackend, }; |