Update all modules to use registry - part 3

This commit is contained in:
mdecimus
2026-02-11 21:30:17 +00:00
parent c4064082ea
commit f7c2fe10c1
86 changed files with 1010 additions and 1037 deletions

View File

@@ -506,7 +506,7 @@ impl SpamClassifier for Server {
&Archiver::new(trainer)
.serialize()
.caused_by(trc::location!())?,
self.core.storage.compression,
self.core.email.compression,
)
.await
.caused_by(trc::location!())?;
@@ -514,7 +514,7 @@ impl SpamClassifier for Server {
.put_blob(
SPAM_CLASSIFIER_KEY,
&classifier.serialize().caused_by(trc::location!())?,
self.core.storage.compression,
self.core.email.compression,
)
.await
.caused_by(trc::location!())?;