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

Swap default min and background thread limits #177

Merged
merged 1 commit into from
May 7, 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
4 changes: 2 additions & 2 deletions src/main/resources/omero-server.properties
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ omero.sessions.max_user_time_to_live=0
# priority level. Internal system threads may still run.
# Note when setting this that these threads do not
# time out.
omero.threads.min_threads=5
omero.threads.min_threads=10

# This setting does nothing.
# See https://github.com/ome/omero-server/issues/154
Expand All @@ -323,7 +323,7 @@ omero.threads.max_threads=50
# import. Note that if this value is less than min_threads,
# min_threads will limit the number of background
# tasks which can run simultaneously.
omero.threads.background_threads=10
omero.threads.background_threads=5

# Number of milliseconds to wait for a slot in the
# background queue before a rejection error will be
Expand Down
Loading