Fix for bug #788265.
Remove created_at, updated_at and deleted_at from instance_type dict returned by methods in sqlalchemy API.
This commit is contained in:
commit
8a8c013cd4
@ -526,6 +526,16 @@ def loads(s):
|
|||||||
return json.loads(s)
|
return json.loads(s)
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
import anyjson
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
anyjson._modules.append(("nova.utils", "dumps", TypeError,
|
||||||
|
"loads", ValueError))
|
||||||
|
anyjson.force_implementation("nova.utils")
|
||||||
|
|
||||||
|
|
||||||
_semaphores = {}
|
_semaphores = {}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user