Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

## Unreleased
## Unreleased:

### Fixes:
- Fix aggregated metrics' computations (mihran113)
- Fix bug in RunStatusReporter raising non-deterministic RuntimeError exception (VassilisVassiliadis)


## 3.26.1 Dec 3, 2024
- Re-upload after PyPI size limitation fix
Expand Down
2 changes: 1 addition & 1 deletion aim/sdk/reporter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ def flush(
logger.debug(f'notifying {self}')

with self.reporter_lock:
flag_names = [flag_name] if flag_name is not None else self.timed_tasks
flag_names = [flag_name] if flag_name is not None else list(self.timed_tasks)
with self.flush_condition:
for flag_name in flag_names:
logger.debug(f'flushing {flag_name}')
Expand Down