public static void TearDown()
 {
     if (mrCluster != null)
     {
         mrCluster.Stop();
         mrCluster = null;
     }
 }
Exemplo n.º 2
0
 public static void TearDown()
 {
     if (!(new FilePath(MiniMRYarnCluster.Appjar)).Exists())
     {
         Log.Info("MRAppJar " + MiniMRYarnCluster.Appjar + " not found. Not running test."
                  );
         return;
     }
     if (mrCluster != null)
     {
         mrCluster.Stop();
     }
 }