Skip to content

Commit

Permalink
Set default exclude_lc_nodes as False
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx committed Apr 14, 2024
1 parent 06a9f55 commit f1a25e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilix/batchq.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class JobSubmission(BaseModel):
default_factory=list, description="List of parameters to bypass validation for"
)
exclude_lc_nodes: bool = Field(
True, description="Exclude the loosely coupled nodes"
False, description="Exclude the loosely coupled nodes"
)
log: str = Field("job.log", description="Where to store the log file of the job")
partition: Literal[
Expand Down Expand Up @@ -474,7 +474,7 @@ def submit(self) -> None:

def submit_job(
jobstring: str,
exclude_lc_nodes: bool = True,
exclude_lc_nodes: bool = False,
log: str = "job.log",
partition: Literal[
"dali", "lgrandi", "xenon1t", "broadwl", "kicp", "caslake", "build"
Expand Down

0 comments on commit f1a25e3

Please sign in to comment.