refactor(router): remove pii-encryption-script feature and use of timestamps for decryption (#1350)

This commit is contained in:
Sanchith Hegde
2023-06-05 18:18:00 +05:30
committed by GitHub
parent 5d8895c064
commit 9f2832f600
24 changed files with 52 additions and 585 deletions

View File

@ -119,7 +119,6 @@ pub struct Store {
#[cfg(feature = "kv_store")]
pub(crate) config: StoreConfig,
pub master_key: Vec<u8>,
pub migration_timestamp: i64,
}
#[cfg(feature = "kv_store")]
@ -183,7 +182,6 @@ impl Store {
drainer_num_partitions: config.drainer.num_partitions,
},
master_key: master_enc_key,
migration_timestamp: config.secrets.migration_encryption_timestamp,
}
}