You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to disable the delete events?
I use S3 both as a fileserver for CloudFront and as a file backup. If a file or directory was deleted by mistake or by error on the origin server, I don't want the files to be deleted on S3 as well.
Is there a way to set configuration options in config.xml?
For example: the setting in arbitrator.py there is these lines:
I know that fileconveyor can delete synced files from origin server. Not what I was looking for though.
Currently I have to set DJANGO_SETTINGS_MODULE from shell. I solved it by always setting it in the script file I use to start fileconveyor. But it would be nice to have all (alse general/global) settings, if there are more settings, in one place instead of spreading them out.
But if it was set in the config.xml it could be something like:
I understand. The answer is: no, it's not yet supported. You can create a pull request to add support for this. Alternatively, you can just hack the code by commenting the code that listens for delete events. That's of course not sustainable in the long term (upgrading will be hard), but it might be a good way to see if File Conveyor can fulfill your needs.
You shouldn't have to set DJANGO_SETTINGS_MODULE at all. Why do you need to set it?
Hi!
I use S3 both as a fileserver for CloudFront and as a file backup. If a file or directory was deleted by mistake or by error on the origin server, I don't want the files to be deleted on S3 as well.
For example: the setting in arbitrator.py there is these lines:
I would like configuration options like this to be in config.xml instead of using the shell like:
export DJANGO_SETTINGS_MODULE=django_settings
.Regards,
Andreas
The text was updated successfully, but these errors were encountered: