@@ -146,7 +146,7 @@ func (sv *RuntimeServiceServer) ListJobSpecification(ctx context.Context, req *p
146146
147147 jobSpecs , err := sv .jobSvc .GetAll (namespaceSpec )
148148 if err != nil {
149- return nil , status .Error (codes .Internal , fmt .Sprintf ("%s: failed to retrive jobs for project %s" , err .Error (), req .GetProjectName ()))
149+ return nil , status .Error (codes .Internal , fmt .Sprintf ("%s: failed to retrieve jobs for project %s" , err .Error (), req .GetProjectName ()))
150150 }
151151
152152 jobProtos := []* pb.JobSpecification {}
@@ -394,7 +394,7 @@ func (sv *RuntimeServiceServer) ListProjects(ctx context.Context, req *pb.ListPr
394394 projectRepo := sv .projectRepoFactory .New ()
395395 projects , err := projectRepo .GetAll ()
396396 if err != nil {
397- return nil , status .Error (codes .NotFound , fmt .Sprintf ("%s: failed to retrive saved projects" , err .Error ()))
397+ return nil , status .Error (codes .NotFound , fmt .Sprintf ("%s: failed to retrieve saved projects" , err .Error ()))
398398 }
399399
400400 projSpecsProto := []* pb.ProjectSpecification {}
@@ -712,7 +712,7 @@ func (sv *RuntimeServiceServer) ListResourceSpecification(ctx context.Context, r
712712
713713 resourceSpecs , err := sv .resourceSvc .GetAll (namespaceSpec , req .DatastoreName )
714714 if err != nil {
715- return nil , status .Error (codes .Internal , fmt .Sprintf ("%s: failed to retrive jobs for project %s" , err .Error (), req .GetProjectName ()))
715+ return nil , status .Error (codes .Internal , fmt .Sprintf ("%s: failed to retrieve jobs for project %s" , err .Error (), req .GetProjectName ()))
716716 }
717717
718718 resourceProtos := []* pb.ResourceSpecification {}
0 commit comments