Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/lib/package/api_export/exported_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ final class ExportedApi {
ExportedJsonFile<Map<String, Object?>>._(
this,
'/not-found.json',
Duration(minutes: 10),
Duration(minutes: 2),
);

/// Run garbage collection on the bucket.
Expand Down Expand Up @@ -255,7 +255,7 @@ final class ExportedPackage {
ExportedJsonFile<T> _suffix<T>(String suffix) => ExportedJsonFile<T>._(
_owner,
'/api/packages/$_package$suffix',
Duration(minutes: 10),
Duration(minutes: 2),
);

/// Interface for writing `/api/packages/<package>`.
Expand Down
Loading