Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ui-api: use correct value for `row_set` in `stored_execution_result` (#56)

authored by

hailey and committed by
GitHub
0e6faad7 e96e371f

+1 -1
+1 -1
osprey_worker/src/osprey/worker/lib/storage/stored_execution_result.py
··· 210 210 row_set_obj.add_row_key(StoredExecutionResultBigTable._encode_action_id(action_id)) 211 211 212 212 rows = osprey_bigtable.table('stored_execution_result').read_rows( 213 - row_set=row_set, 213 + row_set=row_set_obj, 214 214 filter_=row_filters.CellsColumnLimitFilter(1), 215 215 retry=self.retry_policy, 216 216 )