From 08f826586a1f3041b34311bc41d70db0c7963688 Mon Sep 17 00:00:00 2001 From: amartynov Date: Mon, 21 Sep 2015 11:53:40 +0300 Subject: [PATCH] #739: fixed --- devops-service/app/api2/parsers/project.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/devops-service/app/api2/parsers/project.rb b/devops-service/app/api2/parsers/project.rb index 1a799f4..c82d934 100644 --- a/devops-service/app/api2/parsers/project.rb +++ b/devops-service/app/api2/parsers/project.rb @@ -52,7 +52,6 @@ module Devops def update body = create_object_from_json_body - check_string(body["name"], "Parameter 'name' must be a not empty string", true, false) check_string(body["description"], "Parameter 'description' must be a string", true, true) #check_array(body["deploy_envs"], "Parameter 'deploy_envs' must be a not empty array of objects", Hash) rl = check_array(body["run_list"], "Parameter 'run_list' must be an array of string", String, true, true)