Merge pull request #7259 from dasJ/master

Fix Path to staged files
This commit is contained in:
Michael Friedrich 2019-06-27 08:20:45 +02:00 committed by GitHub
commit 2f78b67e74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ void ApiListener::TryActivateZonesStageCallback(const ProcessResult& pr,
// Copy all synced configuration files from stage to production.
for (const String& path : relativePaths) {
if (!Utility::PathExists(path))
if (!Utility::PathExists(apiZonesStageDir + path))
continue;
Log(LogInformation, "ApiListener")