remove exportToZip config property that was added accidentally

This commit is contained in:
Art Lowel
2019-01-10 13:16:27 +01:00
parent 0b164b33b9
commit 04ad79e416
2 changed files with 0 additions and 2 deletions

View File

@@ -20,7 +20,6 @@ module.exports = {
// NOTE: how long should objects be cached for by default
msToLive: {
default: 15 * 60 * 1000, // 15 minutes
exportToZip: 5 * 1000 // 5 seconds
},
// msToLive: 1000, // 15 minutes
control: 'max-age=60', // revalidate browser

View File

@@ -4,7 +4,6 @@ import { AutoSyncConfig } from './auto-sync-config.interface';
export interface CacheConfig extends Config {
msToLive: {
default: number;
exportToZip: number;
},
control: string,
autoSync: AutoSyncConfig