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 | c3356aebb686e7128a19f75ef61d57388131f12f (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/retry/protos | |
parent | dbfc9d8546687ce31ffd112c6c2d2f14be1bb4f0 (diff) | |
download | ydb-c3356aebb686e7128a19f75ef61d57388131f12f.tar.gz |
Restoring authorship annotation for <anskor@yandex-team.ru>. Commit 2 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 1edf34df2ea..063fff01412 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 6a8f99ac674..ad8ea2086a3 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() + |