Skip to content

Commit

Permalink
Make DataService.reloadNode(node_id) transactional. If it isn't we ru…
Browse files Browse the repository at this point in the history
…n the risk of inserting only half of an initial load.
  • Loading branch information
chenson42 committed Jan 31, 2008
1 parent e0deb3b commit eb2e041
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions symmetric/src/changes/changes.xml
Expand Up @@ -19,6 +19,10 @@
<action dev="chenson42" type="add">
Log fallback update/deletes at debug level instead of at the warn level.
</action>
<action dev="chenson42" type="add">
Make DataService.reloadNode(node_id) transactional. If it isn't we run the risk of inserting only half
of an initial load.
</action>
</release>
<release version="1.2.0" date="2008-01-23" description="New dialects and bug fix release">
<action dev="erilong" type="add" issue="atid=997727&amp;aid=1825801">
Expand Down
Expand Up @@ -8,9 +8,11 @@
import org.jumpmind.symmetric.model.DataEvent;
import org.jumpmind.symmetric.model.Node;
import org.jumpmind.symmetric.model.Trigger;
import org.springframework.transaction.annotation.Transactional;

public interface IDataService {

@Transactional
public String reloadNode(String nodeId);

public void insertReloadEvent(Node targetNode);
Expand Down

0 comments on commit eb2e041

Please sign in to comment.