You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by bu...@apache.org on 2016/05/18 22:31:07 UTC

svn commit: r1744462 - /uima/sandbox/uima-ducc/trunk/src/main/admin/db_loader

Author: burn
Date: Wed May 18 22:31:06 2016
New Revision: 1744462

URL: http://svn.apache.org/viewvc?rev=1744462&view=rev
Log:
UIMA-4711 Fix incorrect syntax for nthreads default in db_loader

Modified:
    uima/sandbox/uima-ducc/trunk/src/main/admin/db_loader

Modified: uima/sandbox/uima-ducc/trunk/src/main/admin/db_loader
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/src/main/admin/db_loader?rev=1744462&r1=1744461&r2=1744462&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/src/main/admin/db_loader (original)
+++ uima/sandbox/uima-ducc/trunk/src/main/admin/db_loader Wed May 18 22:31:06 2016
@@ -72,7 +72,7 @@ class DbLoader(DuccUtil):
         in_home = None
         out_url = None
         archive = True
-        nthreads = 10
+        nthreads = '10'
         try:
             opts, args = getopt.getopt(argv, 'i:t:h?', ['no-archive'])
         except: