Skip to content

Commit 364c751

Browse files
committed
adjust RuntimeEnvironment
1 parent 48daf5a commit 364c751

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyter_scheduler/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ class RuntimeEnvironment(BaseModel):
8585
compute_types: Optional[List[str]]
8686
default_compute_type: Optional[str] # Should be a member of the compute_types list
8787
utc_only: Optional[bool]
88-
notifications_enabled: bool = True
89-
notification_events: List[Type[NotificationEvent]] = [e for e in NotificationEvent]
88+
notifications_enabled: bool = False
89+
notification_events: List[Type[NotificationEvent]] = []
9090

9191
def __str__(self):
9292
return self.json()

0 commit comments

Comments
 (0)