Skip to content

Commit

Permalink
Bring imported dataset meta in line with migrated dataset meta
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Nemere committed Mar 27, 2024
1 parent c886a7f commit 63abf40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/dataimport/internal/output/summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ func makeSummaryFileContent(
}

saveMeta := map[string]string{
"TargetID": exp.TargetId,
"SiteID": fmt.Sprintf("%v", meta.SiteID),
"DriveID": fmt.Sprintf("%v", meta.DriveID),
"TargetId": exp.TargetId,
"SiteId": fmt.Sprintf("%v", meta.SiteID),
"DriveId": fmt.Sprintf("%v", meta.DriveID),
"Target": meta.Target,
"Site": meta.Site,
"SOL": meta.SOL,
"Sol": meta.SOL,
"RTT": meta.RTT,
"SCLK": fmt.Sprintf("%v", meta.SCLK),
}
Expand Down

0 comments on commit 63abf40

Please sign in to comment.