Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/29/09 14:28:31 (15 years ago)
Author:
msteinbi
Message:

login works also if client is logged in (#466)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientCommunicator.cs

    r1939 r1954  
    180180        heartbeatLock.ExitWriteLock();
    181181
    182         ClientInfo client = clientAdapter.GetById(clientInfo.Id);
    183         if (client != null && client.State != State.offline && client.State != State.nullState) {
    184           response.Success = false;
    185           response.StatusMessage = ApplicationConstants.RESPONSE_COMMUNICATOR_LOGIN_USER_ALLREADY_ONLINE;
    186           return response;
    187         }
    188182        clientInfo.State = State.idle;
    189183        clientAdapter.Update(clientInfo);
Note: See TracChangeset for help on using the changeset viewer.