vttranlina commented on PR #1707:
URL: https://github.com/apache/james-project/pull/1707#issuecomment-1711306153

   > It seems that RecomputeCurrentQuotasService also run in jpa version. I use 
UploadRepository to recompute jmap quota but there is no implementation of 
UploadRepository for jpa. What should I do? :((
   
   What do you think about creating a UnSupportUploadRepository and guice it 
for JPA?
   
   Ex:
   
   ```java
       static class UnSupportUploadRepository implements UploadRepository {
   
           @Override
           public Publisher<UploadMetaData> upload(InputStream data, 
ContentType contentType, Username user) {
               return Mono.error(new UnsupportedOperationException());
           }
           ///...
       }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to