Stop use of oslo_utils.timeutils.strtime()

oslo_utils.timeutils.strtime() is deprecated in version '1.6'.
We use datetime.datetime.isoformat() or datetime.datetime.strftime()
instead.

Change-Id: Id6e8645362fe70b1427d45d5b44048fe47aba0f7
Closes-Bug: #1475156
This commit is contained in:
fumihiko kakuma 2015-07-13 14:53:42 +09:00
parent 11c0900dea
commit 3f8594bbf6
3 changed files with 7 additions and 7 deletions

View File

@ -13,11 +13,11 @@
# License for the specific language governing permissions and limitations
# under the License.
from datetime import datetime
import itertools
from oslo_log import log as logging
import oslo_messaging
from oslo_utils import timeutils
from oslo_utils import uuidutils
from neutron.common import constants
@ -80,7 +80,7 @@ class PluginReportStateAPI(object):
agent_state['uuid'] = uuidutils.generate_uuid()
kwargs = {
'agent_state': {'agent_state': agent_state},
'time': timeutils.strtime(),
'time': datetime.utcnow().isoformat(),
}
method = cctxt.call if use_call else cctxt.cast
return method(context, 'report_state', **kwargs)

View File

@ -12,6 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from datetime import datetime
from distutils import spawn
import functools
import os
@ -21,7 +22,6 @@ from neutronclient.common import exceptions as nc_exc
from neutronclient.v2_0 import client
from oslo_config import cfg
from oslo_log import log as logging
from oslo_utils import timeutils
from neutron.agent.linux import async_process
from neutron.agent.linux import utils
@ -55,7 +55,7 @@ class ProcessFixture(fixtures.Fixture):
cmd = [spawn.find_executable(self.exec_name),
'--log-dir', log_dir,
'--log-file', timeutils.strtime(fmt=fmt)]
'--log-file', datetime.utcnow().strftime(fmt)]
for filename in self.config_filenames:
cmd += ['--config-file', filename]
self.process = async_process.AsyncProcess(cmd)

View File

@ -14,11 +14,11 @@
# under the License.
import copy
from datetime import datetime
import time
from oslo_config import cfg
from oslo_log import log as logging
from oslo_utils import timeutils
from oslo_utils import uuidutils
from webob import exc
@ -108,10 +108,10 @@ class AgentDBTestMixIn(object):
callback = agents_db.AgentExtRpcCallback()
callback.report_state(self.adminContext,
agent_state={'agent_state': lbaas_hosta},
time=timeutils.strtime())
time=datetime.utcnow().isoformat())
callback.report_state(self.adminContext,
agent_state={'agent_state': lbaas_hostb},
time=timeutils.strtime())
time=datetime.utcnow().isoformat())
res += [lbaas_hosta, lbaas_hostb]
return res