Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/18/10 22:16:04 (14 years ago)
Author:
kgrading
Message:

#828 added various improvements to the plugin cache manager, the execution engine, the transaction handling on the serverside and the server console

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/BaseDao.cs

    r3931 r4042  
    1919        Context.SubmitChanges(ConflictMode.ContinueOnConflict);
    2020      } catch (ChangeConflictException e) {
     21       
    2122        Logger.Warn("Concurrency Exception! " + e.Message);
    2223        foreach (ObjectChangeConflict conflict in Context.ChangeConflicts) {
     
    3031          conflict.Resolve(RefreshMode.KeepChanges);
    3132        }
    32         Context.SubmitChanges(ConflictMode.FailOnFirstConflict);
     33        //next round!
     34        CommitChanges();
     35        //Context.SubmitChanges(ConflictMode.FailOnFirstConflict);
    3336      }
    3437    }
Note: See TracChangeset for help on using the changeset viewer.