Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2078 from johannpinson/patch-3
Browse files Browse the repository at this point in the history
Update error for invalid service to delete #2076
  • Loading branch information
do4gr authored Mar 27, 2018
2 parents 8b9aba8 + 6209f66 commit b5221bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ case class DeleteProjectMutation(

private def validate(project: Option[Project]): Project = {
project match {
case None => throw InvalidServiceName(args.name)
case None => throw InvalidProjectId(projectId)
case Some(p) => p
}
}
Expand Down

0 comments on commit b5221bf

Please sign in to comment.