diff options
author | Valery Piashchynski <[email protected]> | 2021-07-14 11:35:12 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-07-14 11:35:12 +0300 |
commit | d099e47ab28dd044d34e18347a4c714b8af3d612 (patch) | |
tree | e106e13bba48e435b87d218237b282d7f691b52c /proto/jobs/v1beta/jobs.proto | |
parent | ec7c049036d31fe030d106db9f0d268ea0296c5f (diff) |
SQS driver.
Fix isssues in the AMQP driver.
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'proto/jobs/v1beta/jobs.proto')
-rw-r--r-- | proto/jobs/v1beta/jobs.proto | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/proto/jobs/v1beta/jobs.proto b/proto/jobs/v1beta/jobs.proto index 9ff967d4..1bcddf4f 100644 --- a/proto/jobs/v1beta/jobs.proto +++ b/proto/jobs/v1beta/jobs.proto @@ -39,11 +39,11 @@ message HeaderValue { } message Options { - uint64 priority = 1; + int64 priority = 1; string pipeline = 2; - uint64 delay = 3; - uint64 attempts = 4; - uint64 retry_delay = 5; - uint64 timeout = 6; + int64 delay = 3; + int64 attempts = 4; + int64 retry_delay = 5; + int64 timeout = 6; } |