feat(sync): fix errors and cleanup code

Signed-off-by: Vishwas Rajashekar <dev@vrajashkr.com>
This commit is contained in:
Vishwas Rajashekar
2026-05-16 20:04:21 +05:30
parent 2fb691cd3b
commit 3adf36a6c7
10 changed files with 58 additions and 88 deletions
+4
View File
@@ -212,4 +212,8 @@ var (
ErrCertificateWatcherAlreadyRunning = errors.New("certificate watcher is already running")
ErrInvalidEndSessionEndpoint = errors.New("end_session_endpoint must be an absolute http(s) URL")
ErrPolicyConditionNotCompiled = errors.New("policy condition not compiled")
ErrStreamManagerNotInitialized = errors.New("stream manager not initialized")
ErrStreamReaderNotInitialized = errors.New("reader not initialized")
ErrBlobNotFoundInActiveStreams = errors.New("blob not found in active streams")
ErrBlobReaderMissing = errors.New("blob reader missing for this blob")
)