Fix element length in pre-compiled resp data group

This fixes the element length for the MKSNAP disabled error
next
Sayan Nandan 3 years ago
parent 5c0fdde44c
commit 6a5163db6a

@ -39,7 +39,7 @@ You can learn more about installation [here](https://skytable.github.io/docs/get
## Clients 🔌
Until we release an official driver, you'll have to write your own clients — all you need to do is implement the simple and performant [Terrapipe protocol spec](https://skytable.github.io/docs/next/protocol/terrapipe).
Until we release an official driver, you'll have to write your own clients — all you need to do is implement the simple and performant [Terrapipe protocol spec](https://skytable.github.io/docs/protocol/terrapipe).
## Community 👐

@ -87,7 +87,7 @@ pub mod fresp {
/// Snapshot busy (other error)
pub static ref R_SNAPSHOT_BUSY: Vec<u8> = "#2\n*1\n#2\n&1\n!17\nerr-snapshot-busy\n".as_bytes().to_owned();
/// Snapshot disabled (other error)
pub static ref R_SNAPSHOT_DISABLED: Vec<u8> = "#2\n*1\n#2\n&1\n!22\nerr-snapshot-disabled\n".as_bytes().to_owned();
pub static ref R_SNAPSHOT_DISABLED: Vec<u8> = "#2\n*1\n#2\n&1\n!21\nerr-snapshot-disabled\n".as_bytes().to_owned();
/// Snapshot has illegal name (other error)
pub static ref R_SNAPSHOT_ILLEGAL_NAME: Vec<u8> = "#2\n*1\n#2\n&1\n!25\nerr-invalid-snapshot-name\n".as_bytes().to_owned();
/// Access after termination signal (other error)

Loading…
Cancel
Save