From 64b40b5f485a8fdafaa80a794b8dae78ff0ed0bd Mon Sep 17 00:00:00 2001 From: Lei Xue Date: Mon, 15 Jan 2018 15:53:32 +0800 Subject: [PATCH] fix typo in resource_allocation.go --- pkg/scheduler/algorithm/priorities/resource_allocation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/algorithm/priorities/resource_allocation.go b/pkg/scheduler/algorithm/priorities/resource_allocation.go index c938cedfddb..a0dc86234d0 100644 --- a/pkg/scheduler/algorithm/priorities/resource_allocation.go +++ b/pkg/scheduler/algorithm/priorities/resource_allocation.go @@ -45,7 +45,7 @@ func (r *ResourceAllocationPriority) PriorityMap( if priorityMeta, ok := meta.(*priorityMetadata); ok { requested = *priorityMeta.nonZeroRequest } else { - // We couldn't parse metadatat - fallback to computing it. + // We couldn't parse metadata - fallback to computing it. requested = *getNonZeroRequests(pod) }