Commit 9cc60526 authored by YuPengZTE's avatar YuPengZTE

The first letter should be small in errors.New

parent f839c5ff
...@@ -21,8 +21,8 @@ import ( ...@@ -21,8 +21,8 @@ import (
) )
var ( var (
NoSuchPodErr = errors.New("No such pod exists") NoSuchPodErr = errors.New("no such pod exists")
NoSuchTaskErr = errors.New("No such task exists") NoSuchTaskErr = errors.New("no such task exists")
ReconciliationCancelledErr = errors.New("explicit task reconciliation cancelled") ReconciliationCancelledErr = errors.New("explicit task reconciliation cancelled")
NoSuitableOffersErr = errors.New("No suitable offers for pod/task") NoSuitableOffersErr = errors.New("no suitable offers for pod/task")
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment