summaryrefslogtreecommitdiff
path: root/source4/dsdb/repl/drepl_out_pull.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-09-13 18:16:13 +1000
committerAndrew Tridgell <tridge@samba.org>2009-09-13 16:40:37 -0700
commit55a9ea2b33cbcd39ae44972b71922c9c87748d75 (patch)
treeb95d3b2aa1222f571aef83d10a48a71ab0d29e6d /source4/dsdb/repl/drepl_out_pull.c
parent348efd5cbb2e7880671cbc75d01b92c4c9008d9e (diff)
downloadsamba-55a9ea2b33cbcd39ae44972b71922c9c87748d75.tar.gz
samba-55a9ea2b33cbcd39ae44972b71922c9c87748d75.tar.bz2
samba-55a9ea2b33cbcd39ae44972b71922c9c87748d75.zip
s4-repl: added a preiodic notification check to the repl task
The dreplsrv_notify code checks the partition uSN values every N seconds, and if one has changed then it sends a DsReplicaSync to all the replication partners listed in the repsTo attribute for the partition.
Diffstat (limited to 'source4/dsdb/repl/drepl_out_pull.c')
-rw-r--r--source4/dsdb/repl/drepl_out_pull.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/dsdb/repl/drepl_out_pull.c b/source4/dsdb/repl/drepl_out_pull.c
index 54dbd29730..b073d265c3 100644
--- a/source4/dsdb/repl/drepl_out_pull.c
+++ b/source4/dsdb/repl/drepl_out_pull.c
@@ -125,6 +125,7 @@ done:
talloc_free(op);
s->ops.current = NULL;
dreplsrv_run_pending_ops(s);
+ dreplsrv_notify_run_ops(s);
}
static void dreplsrv_pending_op_callback_creq(struct composite_context *creq)
@@ -140,7 +141,7 @@ void dreplsrv_run_pending_ops(struct dreplsrv_service *s)
time_t t;
NTTIME now;
- if (s->ops.current) {
+ if (s->ops.current || s->ops.n_current) {
/* if there's still one running, we're done */
return;
}