Skip to content

Commit

Permalink
Make required: false on PackageState.finished (#6949)
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos authored Aug 22, 2023
1 parent 0738fc2 commit 6e7075b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/lib/task/models.dart
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ class PackageState extends db.ExpandoModel<String> {
DateTime? lastDependencyChanged;

/// The last time the a worker completed with a failure or success.
@db.DateTimeProperty(required: true, indexed: true)
/// TODO: make it `required: true` after the acceptable runtimes are after 2023.08.18.
@db.DateTimeProperty(required: false, indexed: true)
DateTime? finished;

/// Derive [pendingAt] using [versions] and [lastDependencyChanged].
Expand Down

0 comments on commit 6e7075b

Please sign in to comment.