~ubuntu-cloud-archive/ubuntu/precise/nova/trunk

« back to all changes in this revision

Viewing changes to nova/compute/monitor.py

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-06-17 13:29:16 UTC
  • mto: (94.1.1 raring-proposed)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: james.westby@ubuntu.com-20110617132916-u3vv6rxmtvnfn4cj
Tags: upstream-2011.3~d2~20110617.1191
ImportĀ upstreamĀ versionĀ 2011.3~d2~20110617.1191

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
from nova import flags
38
38
from nova import log as logging
 
39
from nova import utils
39
40
from nova.virt import connection as virt_connection
40
41
 
41
42
 
86
87
        ]}
87
88
 
88
89
 
89
 
utcnow = datetime.datetime.utcnow
 
90
utcnow = utils.utcnow
90
91
 
91
92
 
92
93
LOG = logging.getLogger('nova.compute.monitor')