Merge "Fix date format to be compliant with UTC"

This commit is contained in:
Zuul 2019-06-17 22:49:29 +00:00 committed by Gerrit Code Review
commit 1df4688d10
3 changed files with 8 additions and 4 deletions

View File

@ -85,7 +85,6 @@ class _QinlingModelBase(oslo_models.ModelBase, oslo_models.TimestampMixin):
updated_at = getattr(self, 'updated_at')
if updated_at:
setattr(m, 'updated_at', updated_at.isoformat(' '))
return m
def __repr__(self):

View File

@ -217,9 +217,12 @@ class TestJobController(base.APITest):
count=10
).id
next_hour_and_half = datetime.utcnow() + timedelta(hours=1.5)
next_two_hours = datetime.utcnow() + timedelta(hours=2)
req_body = {
'next_execution_time': str(
datetime.utcnow() + timedelta(hours=1.5)
next_hour_and_half.strftime('%Y-%m-%dT%H:%M:%SZ')
),
'pattern': '1 */1 * * *'
}
@ -239,7 +242,9 @@ class TestJobController(base.APITest):
req_body = {
'status': status.RUNNING,
'next_execution_time': str(datetime.utcnow() + timedelta(hours=2)),
'next_execution_time': str(
next_two_hours.strftime('%Y-%m-%dT%H:%M:%SZ')
),
}
resp = self.app.put_json('/v1/jobs/%s' % job_id, req_body)

View File

@ -85,7 +85,7 @@ def datetime_to_str(dct, attr_name):
"""Convert datetime object in dict to string."""
if (dct.get(attr_name) is not None and
not isinstance(dct.get(attr_name), six.string_types)):
dct[attr_name] = dct[attr_name].isoformat(' ')
dct[attr_name] = dct[attr_name].strftime('%Y-%m-%dT%H:%M:%SZ')
def generate_unicode_uuid(dashed=True):