From e03e812ccf14d5dc0a86c5ec4321a2b195297ec6 Mon Sep 17 00:00:00 2001 From: dciangot Date: Thu, 27 Oct 2016 11:25:16 +0200 Subject: [PATCH] =?UTF-8?q?adding=20CANCELED=20in=20FTS=C3=823=20state=20m?= =?UTF-8?q?achine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Monitor/perl_lib/ASO/File.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Monitor/perl_lib/ASO/File.pm b/src/Monitor/perl_lib/ASO/File.pm index 4f0c968..34dc3d6 100644 --- a/src/Monitor/perl_lib/ASO/File.pm +++ b/src/Monitor/perl_lib/ASO/File.pm @@ -66,6 +66,7 @@ our %exit_states = STAGING => 0, STARTED => 0, NOT_USED => 2, + CANCELED => 2 ); sub new @@ -84,7 +85,7 @@ sub new map { $self->{$_} = $args{$_} } keys %args; $self->{LOG} = []; $self->{ME} = $self->{TASKID}; # in case it's already set - + bless $self, $class; return $self; }