diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2023-12-11 18:26:16 +0100 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2023-12-13 23:04:36 +0100 |
commit | 0d01c2bcd670f5600c337b87115e089f6d48aab5 (patch) | |
tree | 702c21459952c126d1a67430324f93004fe36d04 /src/buildtool/main/cli.hpp | |
parent | 9b3eb0e818f25be8a49b441a55991bcf86697548 (diff) | |
download | justbuild-0d01c2bcd670f5600c337b87115e089f6d48aab5.tar.gz |
Add command line options to tune the retry strategy for rpc calls
Three new command line options have been added:
- `--max-attempts`
- `--initial-backoff-seconds`
- `--max-backoff-seconds`
Diffstat (limited to 'src/buildtool/main/cli.hpp')
-rw-r--r-- | src/buildtool/main/cli.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buildtool/main/cli.hpp b/src/buildtool/main/cli.hpp index 5c8d91ef..1ca45255 100644 --- a/src/buildtool/main/cli.hpp +++ b/src/buildtool/main/cli.hpp @@ -51,6 +51,7 @@ struct CommandLineArguments { ServerAuthArguments sauth; ServiceArguments service; ServeArguments serve; + RetryArguments retry; }; auto ParseCommandLineArguments(int argc, char const* const* argv) |