Skip to content

Commit 331e259

Browse files
committed
set notifications_enabled to False by default
1 parent c4be7ef commit 331e259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_scheduler/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class RuntimeEnvironment(BaseModel):
4242
compute_types: Optional[List[str]]
4343
default_compute_type: Optional[str] # Should be a member of the compute_types list
4444
utc_only: Optional[bool]
45-
notifications_enabled: bool = True
45+
notifications_enabled: bool = False
4646
notification_events: List[Type[NotificationEvent]] = [e for e in NotificationEvent]
4747

4848
def __str__(self):

0 commit comments

Comments
 (0)