-
Notifications
You must be signed in to change notification settings - Fork 2
fix: event queues and failed trace handling #364
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
base: fix/removed-async-auth-lookups
Are you sure you want to change the base?
fix: event queues and failed trace handling #364
Conversation
|
Consider updating changelogs/pending-changelog.md with a summary of this change for the release notes. This is optional and non-blocking. |
1 similar comment
|
Consider updating changelogs/pending-changelog.md with a summary of this change for the release notes. This is optional and non-blocking. |
deb670f to
81b9db3
Compare
| return Path(env_override) | ||
|
|
||
| # Prefer a host-mounted workspace path if present (outside the container home). | ||
| host_default = Path("/home/steven/Documents/neuracore/state.db") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the hardcoded host path
| _START_TRACE_LOCK_MAX_RETRIES = 5 | ||
| _START_TRACE_LOCK_BASE_DELAY_S = 0.1 | ||
| _START_TRACE_LOCK_MAX_DELAY_S = 2.0 | ||
| _FAILED_TRACE_MAX_AGE_S = 60 * 60 * 4 # 4 hours |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't the 4 hours too strict, even if they have valid data we remove it.
| ensure_daemon_running() | ||
|
|
||
| ensure_daemon_running() | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate
muneebneura
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM w comments
Features
Bugfixes