1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 10:19:30 +02:00

Insert battery events to the database with soft durability.

This commit is contained in:
Simo Kinnunen 2014-06-20 11:36:27 +09:00
parent cb519dbade
commit 66006db685

View file

@ -137,6 +137,9 @@ dbapi.setDeviceBattery = function(serial, battery) {
, temp: battery.temp , temp: battery.temp
, voltage: battery.voltage , voltage: battery.voltage
} }
}
, {
durability: 'soft'
})) }))
} }