fixed a bug marking calculation as True when should be False in Mongo Core

This commit is contained in:
Shay Palachy
2016-09-04 18:33:28 +03:00
parent d7b342347a
commit 86df7df69c
+1 -1
View File
@@ -163,7 +163,7 @@ class _MongoCore(_BaseCore):
'key': key
},
{
'$set': {'being_calculated': True}
'$set': {'being_calculated': False}
},
upsert=False # should not insert in this case
)