Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rqd] Fix keys not iterable since it's a built-in function. #1564

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rqd/rqd/rqcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ def sanitizeFrames(self):
Iterate over the cache and update the status of frames that might have
completed but never reported back to cuebot.
"""
for frameId in list(self.__cache.keys):
for frameId in list(self.__cache.keys()):
runningFrame = self.__cache[frameId]
# If the frame was marked as completed (exitStatus) and a report has not been sent
# try to file the report again
Expand Down
Loading