Add noop storage backend

This is sometimes useful when an update gets stuck because of some
bug in backup logic.

Note that you cannot restore from this backend because nothing is
saved.
This commit is contained in:
Girish Ramakrishnan
2017-05-19 14:50:29 -07:00
parent 65cff35be6
commit 6fc69c05ca
5 changed files with 81 additions and 3 deletions

View File

@@ -53,7 +53,8 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca
$scope.storageProvider = [
{ name: 'Amazon S3', value: 's3' },
{ name: 'Filesystem', value: 'filesystem' },
{ name: 'Minio', value: 'minio' }
{ name: 'Minio', value: 'minio' },
{ name: 'No-op (Only for testing)', value: 'noop' }
];
$scope.retentionTimes = [