Change type to command_exec

This commit is contained in:
Eugene Yokota 2016-03-18 23:41:39 -04:00
parent 1b1f2abfbe
commit 19b079caf2
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ object Serialization {
implicit val formats = DefaultFormats
(json \ "type").toOption match {
case Some(JString("execution")) =>
case Some(JString("command_exec")) =>
(json \ "command_line").toOption match {
case Some(JString(cmd)) => Right(Execution(cmd))
case _ => Left("Missing or invalid command_line field")