Skip to content

Commit

Permalink
Merge "Changes needed for old python version" into R3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Jan 30, 2017
2 parents 1c29910 + d30cdc2 commit 475b293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/opserver/opserver.py
Expand Up @@ -133,7 +133,7 @@ def redis_query_start(host, port, redis_password, qid, inp, columns):
if columns is not None:
for col in columns:
m = TableSchema(name = col.name, datatype = col.datatype, index = col.index, suffixes = col.suffixes)
col_list.append(m.__dict__)
col_list.append(m._asdict())
query_metadata = {}
query_metadata['enqueue_time'] = OpServerUtils.utc_timestamp_usec()
redish.hset("QUERY:" + qid, 'query_metadata', json.dumps(query_metadata))
Expand Down

0 comments on commit 475b293

Please sign in to comment.