use misc value from kwarg
This commit is contained in:
parent
e144fa4f7a
commit
8439f3a56e
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class Queue(object):
|
||||||
'branch': data.get('branch'),
|
'branch': data.get('branch'),
|
||||||
'is_write': 1 if data.get('is_write') else 0,
|
'is_write': 1 if data.get('is_write') else 0,
|
||||||
'stats': data.get('stats'),
|
'stats': data.get('stats'),
|
||||||
'misc': data.get('misc'),
|
'misc': misc,
|
||||||
'plugin': plugin,
|
'plugin': plugin,
|
||||||
}
|
}
|
||||||
c.execute('INSERT INTO heartbeat VALUES (:file,:time,:project,:branch,:is_write,:stats,:misc,:plugin)', heartbeat)
|
c.execute('INSERT INTO heartbeat VALUES (:file,:time,:project,:branch,:is_write,:stats,:misc,:plugin)', heartbeat)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue