Skip to content

Commit

Permalink
Reverse order of run list in Bokeh (#152)
Browse files Browse the repository at this point in the history
Co-authored-by: Jean-Philippe Lenain <jlenain@in2p3.fr>
  • Loading branch information
jlenain and jlenain authored Oct 2, 2024
1 parent eb436df commit 2e0fda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nectarchain/dqm/bokeh_app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def update_camera_displays(attr, old, new):
print("Opening connection to ZODB")
db = DQMDB(read_only=True).root
print("Getting list of run numbers")
runids = sorted(list(db.keys()))
runids = sorted(list(db.keys()), reverse=True)

# First, get the run id with the most populated result dictionary
# On the full DB, this takes an awful lot of time, and saturates the RAM on the host
Expand Down

0 comments on commit 2e0fda3

Please sign in to comment.