fix(savepoint): wrong savepoint path in download savepoint route

This commit is contained in:
2025-01-18 01:32:24 +03:30
parent e32addcea5
commit 9629e70ed7
3 changed files with 14 additions and 2 deletions

View File

@@ -89,3 +89,7 @@ func (job ManagedJob) TriggerSavepoint() error {
err = job.trackSavepoint()
return err
}
func (job ManagedJob) GetLastSavepointPath() *string {
return job.def.Status.LastSavepointPath
}