Skip to content

Commit

Permalink
fix audioprop
Browse files Browse the repository at this point in the history
  • Loading branch information
ekrojo77 committed Dec 17, 2024
1 parent 850dbd9 commit 9fb082a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class AudioApiProperties extends BaseProps with DatabaseProps with StrictLogging

val MaxAudioFileSizeBytes: Int = 1024 * 1024 * 100 // 100 MiB

val StorageName: String = "test.audio.2.ndla" // propOrElse("AUDIO_FILE_S3_BUCKET", s"$Environment.audio.ndla")
val StorageName: String = propOrElse("AUDIO_FILE_S3_BUCKET", s"$Environment.audio.ndla")
val StorageRegion: Option[String] = propOrNone("AUDIO_FILE_S3_BUCKET_REGION")

val TranscribeStorageName: String = propOrElse("TRANSCRIBE_FILE_S3_BUCKET_NAME", s"$Environment.transcribe.ndla")
Expand Down

0 comments on commit 9fb082a

Please sign in to comment.