File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,6 @@ const start = Date.now()
3636await Promise . all ( Array . from ( { length : TOTAL_REQUESTS } , ( _ , i ) => limiter ( ( ) => run ( i ) ) ) )
3737const duration = Date . now ( ) - start
3838
39- console . log ( `Completed ${ TOTAL_REQUESTS } requests in ${ duration } ms` )
39+ console . debug ( `Completed ${ TOTAL_REQUESTS } requests in ${ duration } ms` )
4040
4141await fs . rm ( TEMP_DIR , { recursive : true , force : true } )
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ export const envStorageDriverSchema = type.or(
1414 STORAGE_FILESYSTEM_PATH : 'string' ,
1515 } ,
1616 {
17- STORAGE_DRIVER : type . unit ( 'gcs' ) ,
18- STORAGE_GCS_BUCKET : 'string' ,
19- STORAGE_GCS_SERVICE_ACCOUNT_KEY : 'string' ,
20- STORAGE_GCS_ENDPOINT : 'string.url' ,
17+ ' STORAGE_DRIVER' : type . unit ( 'gcs' ) ,
18+ ' STORAGE_GCS_BUCKET' : 'string' ,
19+ ' STORAGE_GCS_SERVICE_ACCOUNT_KEY?' : 'string' ,
20+ ' STORAGE_GCS_ENDPOINT' : 'string.url' ,
2121 } ,
2222)
2323export const envDbDriverSchema = type . or (
You can’t perform that action at this time.
0 commit comments