[minor] append .json to action file name for cached actions

This commit is contained in:
Aaron Meihm 2015-09-21 12:27:41 -05:00
Родитель 2d438c7069
Коммит 9ff0dc2422
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -101,7 +101,7 @@ func getResults(r mig.RunnerResult) (err error) {
// Determine the path that should be used to store the in-flight action
// information for a given job.
func flightPath(rr mig.RunnerResult) string {
aid := fmt.Sprintf("%.0f", rr.Action.ID)
aid := fmt.Sprintf("%.0f.json", rr.Action.ID)
return path.Join(ctx.Runner.RunDirectory, rr.EntityName, "inflight", aid)
}