Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: removing some parameters form function call #16

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
removing some parameters form function call
  • Loading branch information
Badal Kumar Prusty authored and Badal Kumar Prusty committed Oct 16, 2024
commit 7a1729549e4e8cb39eae6fcf8458e4a2a98da523
2 changes: 1 addition & 1 deletion lens/pkg/DeploymentMetricService.go
Original file line number Diff line number Diff line change
@@ -125,7 +125,7 @@ func (impl DeploymentMetricServiceImpl) GetDeploymentMetrics(request *MetricRequ
}
lastRelease = nil
}
metrics, err := impl.populateMetrics(releases, materials, leadTimes, lastRelease)
metrics, err := impl.populateMetrics(materials, leadTimes, lastRelease)
if err != nil {
return nil, err
}
Loading