Skip to content

Commit

Permalink
Use global setting for default value
Browse files Browse the repository at this point in the history
  • Loading branch information
koopmant committed Nov 15, 2024
1 parent 35256bb commit ee66ec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/grandchallenge/evaluation/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ class Phase(FieldChangeMixin, HangingProtocolMixin, UUIDModel):
validators=[JSONValidator(schema=SELECTABLE_GPU_TYPES_SCHEMA)],
)
maximum_settable_memory_gb = models.PositiveSmallIntegerField(
default=32,
default=settings.ALGORITHMS_MAX_MEMORY_GB,
help_text=(
"Maximum amount of memory that participants will be allowed to "
"assign to algorithm inference jobs for submission and challenge "
Expand Down

0 comments on commit ee66ec1

Please sign in to comment.