Skip to content

Commit 908678e

Browse files
author
Trey Ivy
committed
format
1 parent b8dc5d1 commit 908678e

File tree

3 files changed

+81
-80
lines changed

3 files changed

+81
-80
lines changed
1 KB
Binary file not shown.

internal/graphql/ent.resolvers.go

+79-79
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/processing/save.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,7 @@ func (act SaveActor) saveActionSummary(ctx context.Context, actionSummary summar
464464
AddActionData(actionDatas...).
465465
Save(ctx)
466466
}
467+
467468
func (act SaveActor) saveBuildGraphMetrics(ctx context.Context, buildGraphMetrics summary.BuildGraphMetrics) (*ent.BuildGraphMetrics, error) {
468469
// TODO:implement EvalutionStats once they exist on the proto
469470
return act.db.BuildGraphMetrics.Create().
@@ -539,7 +540,7 @@ func (act SaveActor) saveCumulativeMetrics(ctx context.Context, cumulativeMetric
539540
}
540541

541542
func (act SaveActor) saveTimingMetrics(ctx context.Context, timingMetrics summary.TimingMetrics) (*ent.TimingMetrics, error) {
542-
//TODO: update when SetActionsExecutionStartInMs is added to and populated in the proto
543+
// TODO: update when SetActionsExecutionStartInMs is added to and populated in the proto
543544
return act.db.TimingMetrics.Create().
544545
SetAnalysisPhaseTimeInMs(timingMetrics.AnalysisPhaseTimeInMs).
545546
SetCPUTimeInMs(timingMetrics.CPUTimeInMs).

0 commit comments

Comments
 (0)