summaryrefslogtreecommitdiff
path: root/source4/dsdb/repl
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-08-09 13:10:21 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-08-09 13:10:25 +0200
commite2733d362d97f0dca5b622e54d73ae0e0cc643f0 (patch)
treeca5a3761defde8c2a4fdee73b738cf33f9df64e3 /source4/dsdb/repl
parentb206a365eade7fbd2defddbadf14ca293409ede3 (diff)
downloadsamba-e2733d362d97f0dca5b622e54d73ae0e0cc643f0.tar.gz
samba-e2733d362d97f0dca5b622e54d73ae0e0cc643f0.tar.bz2
samba-e2733d362d97f0dca5b622e54d73ae0e0cc643f0.zip
s4-dsdb clarify that failure to load the schema items from DRS is expected
This happens if we have a custom schema - we need to build up the schema until it loads, by converting more objects. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Aug 9 13:10:25 CEST 2011 on sn-devel-104
Diffstat (limited to 'source4/dsdb/repl')
-rw-r--r--source4/dsdb/repl/replicated_objects.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/dsdb/repl/replicated_objects.c b/source4/dsdb/repl/replicated_objects.c
index d11de92b1b..f8c151787d 100644
--- a/source4/dsdb/repl/replicated_objects.c
+++ b/source4/dsdb/repl/replicated_objects.c
@@ -122,8 +122,8 @@ WERROR dsdb_repl_make_working_schema(struct ldb_context *ldb,
ignore_attids,
tmp_ctx, &object);
if (!W_ERROR_IS_OK(werr)) {
- DEBUG(1,("Warning: Failed to convert schema object %s into ldb msg\n",
- cur->object.identifier->dn));
+ DEBUG(4,("debug: Failed to convert schema object %s into ldb msg, will try during next loop\n",
+ cur->object.identifier->dn));
failed_obj_count++;
} else {
@@ -136,7 +136,7 @@ WERROR dsdb_repl_make_working_schema(struct ldb_context *ldb,
working_schema,
object.msg);
if (!W_ERROR_IS_OK(werr)) {
- DEBUG(1,("Warning: failed to convert object %s into a schema element: %s\n",
+ DEBUG(4,("debug: failed to convert object %s into a schema element, will try during next loop: %s\n",
ldb_dn_get_linearized(object.msg->dn),
win_errstr(werr)));
failed_obj_count++;