1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

output_processors/postgresql: Ensure screen resolution is a list

Ensure that the screen resolution is converted to a list to prevent
casting errors.
This commit is contained in:
Marc Bonnici 2019-01-30 15:10:29 +00:00 committed by setrofim
parent 3f202205a5
commit 31a5a95803

View File

@ -206,7 +206,7 @@ class PostgresqlResultProcessor(OutputProcessor):
target_pod['sched_features'],
target_pod['page_size_kb'],
# Android Specific
target_pod.get('screen_resolution'),
list(target_pod.get('screen_resolution')),
target_pod.get('prop'),
target_pod.get('android_id'),
target_pod.get('pod_version'),