Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/09 13:52:55 (15 years ago)
Author:
kgrading
Message:

bugfix of shutdown (#473)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs

    r1449 r1481  
    103103        DetermineAction(container);
    104104      }
     105      Console.WriteLine("ended!");
    105106    }   
    106107
     
    137138        //Hard shutdown of the client
    138139        case MessageContainer.MessageType.Shutdown:
     140          lock (engines) {
     141            foreach (KeyValuePair<Guid, AppDomain> kvp in appDomains)
     142              AppDomain.Unload(kvp.Value);
     143          }
    139144          abortRequested = true;
    140145          beat.StopHeartBeat();
Note: See TracChangeset for help on using the changeset viewer.