Change sysinfo cache to 30 seconds - it will show the wrong persons IP address

otherwise, of course :-)
This commit is contained in:
Magnus Hagander
2010-06-17 14:21:47 +02:00
parent 4ef10d51c1
commit 6c1c4213d5

View File

@ -93,7 +93,7 @@ def organisationform(request, itemid):
})
# Basic information about the connection
@cache(minutes=2)
@cache(seconds=30)
def system_information(request):
return render_to_response('core/system_information.html', {
'server': uname()[1],