Skip to content

Commit 8520e04

Browse files
committed
GLOBAL OTBIVKA FIX ୧༼ಠ益ಠ༽୨
Make all "otbivka" exactly 80 symbols. Command: ```bash sed -i 's#^//////////////\+$#////////////////////////////////////////////////////////////////////////////////#g' $(find yt \( -name '*.cpp' -or -name '*.h' -or -name '*.proto' \) -not -path 'yt/yt/experiments/private/tabletvis/imgui/*') ``` 30a0ba9f42ba1909d3cee11fe12bba14c7c8b039
1 parent f9fbb65 commit 8520e04

File tree

80 files changed

+185
-185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+185
-185
lines changed

yt/cpp/mapreduce/client/batch_request_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ using ::NThreading::TFuture;
3232
using ::NThreading::TPromise;
3333
using ::NThreading::NewPromise;
3434

35-
////////////////////////////////////////////////////////////////////
35+
////////////////////////////////////////////////////////////////////////////////
3636

3737
TBatchRequest::TBatchRequest(const TTransactionId& defaultTransaction, ::TIntrusivePtr<TClient> client)
3838
: DefaultTransaction_(defaultTransaction)

yt/cpp/mapreduce/client/operation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ TSimpleOperationIo CreateSimpleOperationIo(
344344
};
345345
}
346346

347-
////////////////////////////////////////////////////////////////////
347+
////////////////////////////////////////////////////////////////////////////////
348348

349349
TString GetJobStderrWithRetriesAndIgnoreErrors(
350350
const IRequestRetryPolicyPtr& retryPolicy,

yt/cpp/mapreduce/client/retry_heavy_write_request.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace NYT {
1010

11-
///////////////////////////////////////////////////////////////////////////////
11+
////////////////////////////////////////////////////////////////////////////////
1212

1313
class THeavyRequestRetrier
1414
{
@@ -52,7 +52,7 @@ class THeavyRequestRetrier
5252
TStreamFactory StreamFactory_;
5353
};
5454

55-
///////////////////////////////////////////////////////////////////////////////
55+
////////////////////////////////////////////////////////////////////////////////
5656

5757
void RetryHeavyWriteRequest(
5858
const IClientRetryPolicyPtr& clientRetryPolicy,

yt/cpp/mapreduce/http/context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace NYT {
1111

12-
///////////////////////////////////////////////////////////////////////////////
12+
////////////////////////////////////////////////////////////////////////////////
1313

1414
struct TClientContext
1515
{

yt/cpp/mapreduce/http/helpers.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace NYT {
1111

12-
///////////////////////////////////////////////////////////////////////////////
12+
////////////////////////////////////////////////////////////////////////////////
1313

1414
TString CreateHostNameWithPort(const TString& hostName, const TClientContext& context)
1515
{
@@ -100,6 +100,6 @@ void LogRequest(const THttpHeader& header, const TString& url, bool includeParam
100100
GetLoggedAttributes(header, url, includeParameters, Max<size_t>()));
101101
}
102102

103-
///////////////////////////////////////////////////////////////////////////////
103+
////////////////////////////////////////////////////////////////////////////////
104104

105105
} // namespace NYT

yt/cpp/mapreduce/http/helpers.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace NYT {
1010

11-
///////////////////////////////////////////////////////////////////////////////
11+
////////////////////////////////////////////////////////////////////////////////
1212

1313
TString CreateHostNameWithPort(const TString& name, const TClientContext& context);
1414

@@ -24,6 +24,6 @@ TString GetLoggedAttributes(const THttpHeader& header, const TString& url, bool
2424

2525
void LogRequest(const THttpHeader& header, const TString& url, bool includeParameters, const TString& requestId, const TString& hostName);
2626

27-
///////////////////////////////////////////////////////////////////////////////
27+
////////////////////////////////////////////////////////////////////////////////
2828

2929
} // namespace NYT

yt/cpp/mapreduce/http/http.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct THeadersPtrWrapper;
3131

3232
} // NHttp
3333

34-
///////////////////////////////////////////////////////////////////////////////
34+
////////////////////////////////////////////////////////////////////////////////
3535

3636
enum class EFrameType
3737
{

yt/cpp/mapreduce/http/http_client.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void CheckErrorResponse(const TString& hostName, const TString& requestId, const
102102

103103
} // namespace
104104

105-
///////////////////////////////////////////////////////////////////////////////
105+
////////////////////////////////////////////////////////////////////////////////
106106

107107
class TDefaultHttpResponse
108108
: public IHttpResponse
@@ -188,7 +188,7 @@ class TDefaultHttpClient
188188
}
189189
};
190190

191-
///////////////////////////////////////////////////////////////////////////////
191+
////////////////////////////////////////////////////////////////////////////////
192192

193193
struct TCoreRequestContext
194194
{
@@ -586,7 +586,7 @@ class TCoreHttpClient
586586
NHttp::IClientPtr Client_;
587587
};
588588

589-
///////////////////////////////////////////////////////////////////////////////
589+
////////////////////////////////////////////////////////////////////////////////
590590

591591
IHttpClientPtr CreateDefaultHttpClient()
592592
{
@@ -598,6 +598,6 @@ IHttpClientPtr CreateCoreHttpClient(bool useTLS, const TConfigPtr& config)
598598
return std::make_shared<TCoreHttpClient>(useTLS, config);
599599
}
600600

601-
///////////////////////////////////////////////////////////////////////////////
601+
////////////////////////////////////////////////////////////////////////////////
602602

603603
} // namespace NYT::NHttpClient

yt/cpp/mapreduce/http/http_client.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515

1616
namespace NYT::NHttpClient {
1717

18-
///////////////////////////////////////////////////////////////////////////////
18+
////////////////////////////////////////////////////////////////////////////////
1919

2020
struct THttpConfig
2121
{
2222
TDuration SocketTimeout = TDuration::Zero();
2323
};
2424

25-
///////////////////////////////////////////////////////////////////////////////
25+
////////////////////////////////////////////////////////////////////////////////
2626

2727
class IHttpResponse
2828
{
@@ -65,12 +65,12 @@ class IHttpClient
6565
}
6666
};
6767

68-
///////////////////////////////////////////////////////////////////////////////
68+
////////////////////////////////////////////////////////////////////////////////
6969

7070
IHttpClientPtr CreateDefaultHttpClient();
7171

7272
IHttpClientPtr CreateCoreHttpClient(bool useTLS, const TConfigPtr& config);
7373

74-
///////////////////////////////////////////////////////////////////////////////
74+
////////////////////////////////////////////////////////////////////////////////
7575

7676
} // namespace NYT::NHttpClient

yt/cpp/mapreduce/http/requests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace NYT {
1010

11-
///////////////////////////////////////////////////////////////////////////////
11+
////////////////////////////////////////////////////////////////////////////////
1212

1313
bool ParseBoolFromResponse(const TString& response);
1414

0 commit comments

Comments
 (0)