diff options
author | Florian Klink <flokli@flokli.de> | 2023-05-18T18·34+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-05-18T19·29+0000 |
commit | 103d2eb90936e7897c20a9db96782aab5b9334e1 (patch) | |
tree | fe5d014461485b8da2f00eee51fefdd7ba03d27c /tvix/store/protos/rpc_pathinfo.proto | |
parent | 0e7bbf0d01511b1b074799ce37e4e94119a3fb4f (diff) |
refactor(tvix/store): bump CalculateNARResponse.nar_size to u64 r/6165
Change-Id: I5f41981820363a5eb9982c3d19830916207c62cc Reviewed-on: https://cl.tvl.fyi/c/depot/+/8591 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/store/protos/rpc_pathinfo.proto')
-rw-r--r-- | tvix/store/protos/rpc_pathinfo.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/protos/rpc_pathinfo.proto b/tvix/store/protos/rpc_pathinfo.proto index f37794c291be..991abf6efa99 100644 --- a/tvix/store/protos/rpc_pathinfo.proto +++ b/tvix/store/protos/rpc_pathinfo.proto @@ -66,7 +66,7 @@ message GetPathInfoRequest { // digest. message CalculateNARResponse { // This size of the NAR file, in bytes. - uint32 nar_size = 1; + uint64 nar_size = 1; // The sha256 of the NAR file representation. bytes nar_sha256 = 2; |