Skip to content

Commit

Permalink
✏️ typo: Changed terminology systems configuration variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
suatgonul committed Oct 13, 2023
1 parent d8d9e37 commit 41e7d37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ToFhirEngineConfig(toFhirEngineConfig: Config) {
lazy val jobRepositoryFolderPath: String = Try(toFhirEngineConfig.getString("mapping-jobs.repository.folder-path")).getOrElse("mapping-jobs")

/** Path to the folder where the terminology system definitions are kept. */
lazy val terminologySystemFolderPath: String = Try(toFhirEngineConfig.getString("terminology-servers.folder-path")).getOrElse("terminology-servers")
lazy val terminologySystemFolderPath: String = Try(toFhirEngineConfig.getString("terminology-systems.folder-path")).getOrElse("terminology-systems")

/** Timeout for a single mapping */
lazy val mappingTimeout: Duration = Try(toFhirEngineConfig.getDuration("mappings.timeout").toScala).toOption.getOrElse(Duration.apply(5, TimeUnit.SECONDS))
Expand Down

0 comments on commit 41e7d37

Please sign in to comment.