diff options
author | anskor <anskor@yandex-team.ru> | 2022-02-10 16:50:18 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:18 +0300 |
commit | dbfc9d8546687ce31ffd112c6c2d2f14be1bb4f0 (patch) | |
tree | 51436f0d49801f6430e492b4c472a80f98760a34 /library/cpp/retry/protos | |
parent | a1b790e06e8e99cffd5157a991259f9d0f993f66 (diff) | |
download | ydb-dbfc9d8546687ce31ffd112c6c2d2f14be1bb4f0.tar.gz |
Restoring authorship annotation for <anskor@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/retry/protos')
-rw-r--r-- | library/cpp/retry/protos/retry_options.proto | 18 | ||||
-rw-r--r-- | library/cpp/retry/protos/ya.make | 28 |
2 files changed, 23 insertions, 23 deletions
diff --git a/library/cpp/retry/protos/retry_options.proto b/library/cpp/retry/protos/retry_options.proto index 063fff01412..1edf34df2ea 100644 --- a/library/cpp/retry/protos/retry_options.proto +++ b/library/cpp/retry/protos/retry_options.proto @@ -1,9 +1,9 @@ -package NRetry; - -message TRetryOptionsPB { - optional uint32 MaxTries = 1 [default = 5]; - optional uint32 InitialSleepMs = 2 [default = 0]; - optional uint32 SleepIncrementMs = 3 [default = 0]; - optional uint32 RandomDeltaMs = 4 [default = 10]; - optional uint32 ExponentalMultiplierMs = 5 [default = 100]; -} +package NRetry; + +message TRetryOptionsPB { + optional uint32 MaxTries = 1 [default = 5]; + optional uint32 InitialSleepMs = 2 [default = 0]; + optional uint32 SleepIncrementMs = 3 [default = 0]; + optional uint32 RandomDeltaMs = 4 [default = 10]; + optional uint32 ExponentalMultiplierMs = 5 [default = 100]; +} diff --git a/library/cpp/retry/protos/ya.make b/library/cpp/retry/protos/ya.make index ad8ea2086a3..6a8f99ac674 100644 --- a/library/cpp/retry/protos/ya.make +++ b/library/cpp/retry/protos/ya.make @@ -1,16 +1,16 @@ -PROTO_LIBRARY() - -OWNER( - anskor -) - -SRCS( - retry_options.proto -) - -PEERDIR() - +PROTO_LIBRARY() + +OWNER( + anskor +) + +SRCS( + retry_options.proto +) + +PEERDIR() + EXCLUDE_TAGS(GO_PROTO) -END() - +END() + |