Cloudmigration: Sets the runID correctly when saving (#85661)

Sets the runID correctly instead of setting it to the same as the migration id.
This commit is contained in:
Leonard Gram
2024-04-05 18:03:45 +02:00
committed by GitHub
parent 58f32150c2
commit 1332d8ba24
4 changed files with 10 additions and 8 deletions
@@ -16,7 +16,7 @@ type Service interface {
GetMigrationStatus(context.Context, string, string) (*CloudMigrationRun, error)
GetMigrationStatusList(context.Context, string) ([]*CloudMigrationRun, error)
DeleteMigration(context.Context, int64) (*CloudMigration, error)
SaveMigrationRun(context.Context, *CloudMigrationRun) (string, error)
SaveMigrationRun(context.Context, *CloudMigrationRun) (int64, error)
ParseCloudMigrationConfig() (string, error)
}