Skip to content

Commit

Permalink
Remove unused config options
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Oct 31, 2024
1 parent 5c93150 commit 25515a7
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions src/everest/config/server_config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Literal, Optional

from pydantic import BaseModel, ConfigDict, Field
from pydantic import BaseModel, Field

from .has_ert_queue_options import HasErtQueueOptions

Expand All @@ -18,26 +18,7 @@ class ServerConfig(BaseModel, HasErtQueueOptions): # type: ignore
as RMS and Eclipse.
""",
) # Corresponds to queue name
exclude_host: Optional[str] = Field(
None,
description="""Comma separated list of nodes that should be
excluded from the slurm run""",
)
include_host: Optional[str] = Field(
None,
description="""Comma separated list of nodes that
should be included in the slurm run""",
)
options: Optional[str] = Field(
None,
description="""Used to specify options to LSF.
Examples to set memory requirement is:
* rusage[mem=1000]""",
)
queue_system: Optional[Literal["lsf", "local", "slurm"]] = Field(
None,
description="Defines which queue system the everest server runs on.",
)
model_config = ConfigDict(
extra="forbid",
)

0 comments on commit 25515a7

Please sign in to comment.