From c6d009756561b918fa5230e01e70e4f14bae4a0d Mon Sep 17 00:00:00 2001 From: leiaibj Date: Tue, 23 Oct 2012 06:05:46 +0000 Subject: [PATCH] Use info tag instead of data for checking whether auto discovery running git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14093 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/profilednodes.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/profilednodes.pm b/xCAT-server/lib/xcat/plugins/profilednodes.pm index ec9c5532f..ab224529f 100644 --- a/xCAT-server/lib/xcat/plugins/profilednodes.pm +++ b/xCAT-server/lib/xcat/plugins/profilednodes.pm @@ -812,9 +812,9 @@ sub nodediscoverstop{ sub nodediscoverstatus{ my $discover_running = xCAT::ProfiledNodeUtils->is_discover_started(); if($discover_running){ - setrsp_infostr("Profiled nodes discover is running"); + setrsp_progress("Profiled nodes discover is running"); }else{ - setrsp_infostr("Profiled nodes discover not started"); + setrsp_progress("Profiled nodes discover not started"); } }