You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2013/02/12 17:06:39 UTC

[lucy-commits] git commit: refs/heads/master - Fix code example in Cookbook/FastUpdates.pod

Updated Branches:
  refs/heads/master 7c5ed8921 -> c0d180c47


Fix code example in Cookbook/FastUpdates.pod


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/c0d180c4
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/c0d180c4
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/c0d180c4

Branch: refs/heads/master
Commit: c0d180c47de9f9d6c4bc900ae9e512c97e08f4b3
Parents: 7c5ed89
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Tue Feb 12 17:05:59 2013 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Tue Feb 12 17:05:59 2013 +0100

----------------------------------------------------------------------
 perl/lib/Lucy/Docs/Cookbook/FastUpdates.pod |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/c0d180c4/perl/lib/Lucy/Docs/Cookbook/FastUpdates.pod
----------------------------------------------------------------------
diff --git a/perl/lib/Lucy/Docs/Cookbook/FastUpdates.pod b/perl/lib/Lucy/Docs/Cookbook/FastUpdates.pod
index 2ebebb6..eff8e54 100644
--- a/perl/lib/Lucy/Docs/Cookbook/FastUpdates.pod
+++ b/perl/lib/Lucy/Docs/Cookbook/FastUpdates.pod
@@ -132,7 +132,7 @@ operate simultaneously:
 
     # Background merge process.
     my $manager = Lucy::Index::IndexManager->new;
-    $index_manager->set_write_lock_timeout(60_000);
+    $manager->set_write_lock_timeout(60_000);
     my $bg_merger = Lucy::Index::BackgroundMerger->new(
         index   => '/path/to/index',
         manager => $manager,