Skip to content

Commit

Permalink
Makes the disk optional (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
ribalba authored Oct 1, 2024
1 parent 49c7f24 commit 41fc357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/object_specifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Measurement(BaseModel):
coalitions: List[Coalition]
all_tasks: Dict
network: Optional[Dict] = None # network is optional when system is in flight mode / network turned off
disk: Dict
disk: Optional[Dict] = None # No idea what system would not have a disk but we are seeing this in production
interrupts: List
processor: Processor
thermal_pressure: str
Expand Down

0 comments on commit 41fc357

Please sign in to comment.