Skip to content

Commit 7a9dfbb

Browse files
authored
Enabled exporting of API (#8255)
1 parent 3f801de commit 7a9dfbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/config/dartlang-pub-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fallbackSearchServicePrefix: https://search-dot-dartlang-pub-dev.appspot.com
99
defaultServiceBaseUrl: https://{{GAE_VERSION}}-dot-{{GOOGLE_CLOUD_PROJECT}}.appspot.com
1010
popularityDumpBucketName: dartlang-pub-dev--popularity
1111
searchSnapshotBucketName: dartlang-pub-dev--search-snapshot
12-
exportedApiBucketName: null
12+
exportedApiBucketName: dartlang-pub-dev-exported-api
1313
maxTaskInstances: 50
1414
maxTaskRunHours: 2
1515
taskResultBucketName: dartlang-pub-dev-task-output

app/config/dartlang-pub.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fallbackSearchServicePrefix: https://search-dot-dartlang-pub.appspot.com
1212
defaultServiceBaseUrl: https://{{GAE_VERSION}}-dot-{{GOOGLE_CLOUD_PROJECT}}.appspot.com
1313
popularityDumpBucketName: dartlang-pub--popularity
1414
searchSnapshotBucketName: dartlang-pub--search-snapshot
15-
exportedApiBucketName: null
15+
exportedApiBucketName: dartlang-pub-exported-api
1616
maxTaskInstances: 700
1717
maxTaskRunHours: 2
1818
taskResultBucketName: dartlang-pub-task-output

app/lib/shared/configuration.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ final class Configuration {
423423
publicPackagesBucketName!,
424424
searchSnapshotBucketName!,
425425
taskResultBucketName!,
426-
if (exportedApiBucketName != null) exportedApiBucketName!,
426+
exportedApiBucketName!,
427427
]);
428428

429429
late final isProduction = projectId == 'dartlang-pub';

0 commit comments

Comments
 (0)