summaryrefslogtreecommitdiffstats
path: root/tools/upgrade
diff options
context:
space:
mode:
authorTim Laszlo <tim.laszlo@gmail.com>2012-10-17 14:18:45 -0500
committerTim Laszlo <tim.laszlo@gmail.com>2012-10-17 14:18:50 -0500
commit7e4ee01d99e1ae775513f6f26767b457bf7656da (patch)
tree9c056fb8538ae2bf9d2cdc61462ac569d2ba90a1 /tools/upgrade
parent3cf1f738c0a474e21ce56604ad874241584d59e9 (diff)
downloadbcfg2-7e4ee01d99e1ae775513f6f26767b457bf7656da.tar.gz
bcfg2-7e4ee01d99e1ae775513f6f26767b457bf7656da.tar.bz2
bcfg2-7e4ee01d99e1ae775513f6f26767b457bf7656da.zip
add a higher timeout for caching certain objects
Diffstat (limited to 'tools/upgrade')
-rwxr-xr-xtools/upgrade/1.3/migrate_dbstats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/upgrade/1.3/migrate_dbstats.py b/tools/upgrade/1.3/migrate_dbstats.py
index 888abc002..1bde1f0f3 100755
--- a/tools/upgrade/1.3/migrate_dbstats.py
+++ b/tools/upgrade/1.3/migrate_dbstats.py
@@ -84,7 +84,7 @@ def _migrate_transaction(inter, entries, fperms):
unkown_profile = cache.get("PROFILE_UNKNOWN")
if not unkown_profile:
unkown_profile, created = new_models.Group.objects.get_or_create(name="<<Unknown>>")
- cache.set("PROFILE_UNKNOWN", unkown_profile)
+ cache.set("PROFILE_UNKNOWN", unkown_profile, 60 * 60)
newint.profile = unkown_profile
groups = [unkown_profile]
super(new_models.Interaction, newint).save()