Skip to content

Commit

Permalink
delete global from regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
rassokhin-s committed Mar 20, 2024
1 parent c0ba419 commit 1451999
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions services/rfcx/ingest.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ const extensionsRequiringConvToWav = ['.flac']

const { IngestionError } = require('../../utils/errors')
const loggerIgnoredErrors = [
/Duplicate file\. Matching sha1 signature already ingested\./g,
/This file was already ingested\./g,
/File extension is not supported/g,
/Stream source file was not created/g,
/Cannot create source file with provided data/g,
/There is another file with the same timestamp in the stream/g
/Duplicate file\. Matching sha1 signature already ingested\./,
/This file was already ingested\./,
/File extension is not supported/,
/Stream source file was not created/,
/Cannot create source file with provided data/,
/There is another file with the same timestamp in the stream/
]

if (PROMETHEUS_ENABLED) {
Expand Down

0 comments on commit 1451999

Please sign in to comment.