Skip to content

Commit 42f49a9

Browse files
committed
Revert "Update src/Octoshift/Commands/DownloadLogs/DownloadLogsCommandHandler.cs"
This reverts commit 5acd9c4.
1 parent ef23f0f commit 42f49a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Octoshift/Commands/DownloadLogs/DownloadLogsCommandHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ public async Task Handle(DownloadLogsCommandArgs args)
8282
throw new OctoshiftCliException($"Migration log for migration {migrationId} is currently unavailable. Migration logs are only available for 24 hours after a migration finishes. Please ensure the migration ID is correct and the migration has completed recently.");
8383
}
8484

85-
var (_, repositoryName, _, _, migrationLogUrl) = migrationResult.Result;
86-
logUrl = migrationLogUrl;
87-
repositoryName = repositoryName;
85+
var (State, RepositoryName, WarningsCount, FailureReason, MigrationLogUrl) = migrationResult.Result;
86+
logUrl = MigrationLogUrl;
87+
repositoryName = RepositoryName;
8888
}
8989
else
9090
{

0 commit comments

Comments
 (0)