Skip to content

Commit

Permalink
Update RayRunnerConfig to be frozen dataclass
Browse files Browse the repository at this point in the history
  • Loading branch information
jaychia authored Dec 8, 2023
1 parent 934b73c commit 21bec7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daft/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class _PyRunnerConfig(_RunnerConfig):
use_thread_pool: bool | None


@dataclasses.dataclass
@dataclasses.dataclass(frozen=True)
class _RayRunnerConfig(_RunnerConfig):
name = "ray"
address: str | None
Expand Down

0 comments on commit 21bec7c

Please sign in to comment.