Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
|
@@ -88,7 +88,11 @@ class RepositoryUpdater(system: ActorSystem, |
|
|
FastFuture.successful(RepositoryUpdatedResponse(s"Repository is up to date at $requiredRepositoryVersion")) |
|
|
} else { |
|
|
// No. Construct the list of updates that it needs. |
|
|
log.info(s"Repository not up-to-date. Found: $foundRepositoryVersion, Required: $requiredRepositoryVersion") |
|
|
|
|
|
log.info( |
|
|
s"Repository not up-to-date. Found: ${foundRepositoryVersion.getOrElse("None")}, Required: $requiredRepositoryVersion" |
|
|
) |
|
|
|
|
|
val selectedPlugins: Seq[PluginForKnoraBaseVersion] = selectPluginsForNeededUpdates(foundRepositoryVersion) |
|
|
log.info(s"Updating repository with transformations: ${selectedPlugins.map(_.versionString).mkString(", ")}") |
|
|
|
|
|