projects
/
invirt/packages/invirt-web.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24bbf8e
)
Fix a SQLAlchemy bug in the web ACL caching code
author
Evan Broder
<broder@mit.edu>
Thu, 9 Oct 2008 06:20:44 +0000
(
02:20
-0400)
committer
Evan Broder
<broder@mit.edu>
Thu, 9 Oct 2008 06:20:44 +0000
(
02:20
-0400)
svn path=/trunk/packages/sipb-xen-www/; revision=1095
code/cache_acls.py
patch
|
blob
|
history
diff --git
a/code/cache_acls.py
b/code/cache_acls.py
index
414f2e3
..
fa9b9f9
100644
(file)
--- a/
code/cache_acls.py
+++ b/
code/cache_acls.py
@@
-55,7
+55,7
@@
def refreshCache():
session.begin()
try:
- machines = Machine.select()
+ machines = Machine.query().all()
for m in machines:
refreshMachine(m)
session.flush()