-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Expired Link on Access #959
Conversation
changes as per review comments log errors instead of writing to the response abort execution on errors to prevent nil pointer exeptions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we have the share expiration of the core of reva inside the grpc service?
@PVince81 any update on this? |
@labkode setting this one as WIP, as I hacked it around a little bit, and it's lacking some process. We moved it's priority to a future sprint and will retake it soon. |
closing in favor of #1361 |
Since there is no background jobs scheduled to wipe out expired resources, for the time being public links are going to be removed on a "on demand" basis, meaning whenever there is an API call that access the list of shares for a given resource, we will check whether the share is expired and delete it if so.
This code will not live in the managers (drivers), since we want the behavior to be consistent across implementations.
Closes owncloud/ocis#372