diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-08-06 11:35:03 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-08-06 11:42:03 +0100 |
| commit | f85e8a42786d8f46498cbaeb3eccc214ac499742 (patch) | |
| tree | 3ed87e3d6f6561758cd574be6fb939ce2519773c /packages/backend/src | |
| parent | fix type for env variable (diff) | |
| download | sharkey-f85e8a42786d8f46498cbaeb3eccc214ac499742.tar.gz sharkey-f85e8a42786d8f46498cbaeb3eccc214ac499742.tar.bz2 sharkey-f85e8a42786d8f46498cbaeb3eccc214ac499742.zip | |
appease the linter
Diffstat (limited to 'packages/backend/src')
| -rw-r--r-- | packages/backend/src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/config.ts b/packages/backend/src/config.ts index c2463ea5ca..64f2d2ac65 100644 --- a/packages/backend/src/config.ts +++ b/packages/backend/src/config.ts @@ -459,7 +459,7 @@ function applyEnvOverrides(config: Source) { _apply_top([['sentryForFrontend', 'sentryForBackend'], 'options', ['dsn', 'profileSampleRate', 'serverName', 'includeLocalVariables', 'proxy', 'keepAlive', 'caCerts']]); _apply_top(['sentryForBackend', 'enableNodeProfiling']); _apply_top([['clusterLimit', 'deliverJobConcurrency', 'inboxJobConcurrency', 'relashionshipJobConcurrency', 'deliverJobPerSec', 'inboxJobPerSec', 'relashionshipJobPerSec', 'deliverJobMaxAttempts', 'inboxJobMaxAttempts']]); - _apply_top([['outgoingAddress', 'outgoingAddressFamily', 'proxy', 'proxySmtp', 'mediaProxy', 'proxyRemoteFiles','videoThumbnailGenerator']]); + _apply_top([['outgoingAddress', 'outgoingAddressFamily', 'proxy', 'proxySmtp', 'mediaProxy', 'proxyRemoteFiles', 'videoThumbnailGenerator']]); _apply_top([['maxFileSize', 'maxNoteLength', 'pidFile']]); _apply_top(['import', ['downloadTimeout', 'maxFileSize']]); _apply_top([['signToActivityPubGet', 'checkActivityPubGetSignature']]); |