Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
8d1fa6aa
Commit
8d1fa6aa
authored
12 years ago
by
jakubs
Browse files
Options
Downloads
Patches
Plain Diff
add logging to the index creation failure in test initializer
SVN: 27405
parent
0ae37e28
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/util/TestInitializer.java
+7
-0
7 additions, 0 deletions
...msx/cisd/openbis/generic/server/util/TestInitializer.java
with
7 additions
and
0 deletions
openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/util/TestInitializer.java
+
7
−
0
View file @
8d1fa6aa
...
@@ -21,10 +21,13 @@ import java.io.FileFilter;
...
@@ -21,10 +21,13 @@ import java.io.FileFilter;
import
java.io.IOException
;
import
java.io.IOException
;
import
org.apache.commons.io.FileUtils
;
import
org.apache.commons.io.FileUtils
;
import
org.apache.log4j.Logger
;
import
ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel
;
import
ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel
;
import
ch.systemsx.cisd.base.exceptions.IOExceptionUnchecked
;
import
ch.systemsx.cisd.base.exceptions.IOExceptionUnchecked
;
import
ch.systemsx.cisd.common.filesystem.FileUtilities
;
import
ch.systemsx.cisd.common.filesystem.FileUtilities
;
import
ch.systemsx.cisd.common.logging.LogCategory
;
import
ch.systemsx.cisd.common.logging.LogFactory
;
import
ch.systemsx.cisd.common.logging.LogInitializer
;
import
ch.systemsx.cisd.common.logging.LogInitializer
;
import
ch.systemsx.cisd.openbis.generic.server.dataaccess.db.IndexCreationUtil
;
import
ch.systemsx.cisd.openbis.generic.server.dataaccess.db.IndexCreationUtil
;
import
ch.systemsx.cisd.openbis.generic.server.dataaccess.db.search.FullTextIndexerRunnable
;
import
ch.systemsx.cisd.openbis.generic.server.dataaccess.db.search.FullTextIndexerRunnable
;
...
@@ -35,6 +38,9 @@ import ch.systemsx.cisd.openbis.generic.server.dataaccess.db.search.IndexMode;
...
@@ -35,6 +38,9 @@ import ch.systemsx.cisd.openbis.generic.server.dataaccess.db.search.IndexMode;
*/
*/
public
class
TestInitializer
public
class
TestInitializer
{
{
static
final
Logger
operationLog
=
LogFactory
.
getLogger
(
LogCategory
.
OPERATION
,
TestInitializer
.
class
);
public
static
final
String
LUCENE_INDEX_TEMPLATE_PATH
=
"../openbis/targets/tempLuceneIndices"
;
public
static
final
String
LUCENE_INDEX_TEMPLATE_PATH
=
"../openbis/targets/tempLuceneIndices"
;
public
static
final
String
LUCENE_INDEX_PATH
=
"../openbis/targets/lucene/indices"
;
public
static
final
String
LUCENE_INDEX_PATH
=
"../openbis/targets/lucene/indices"
;
...
@@ -81,6 +87,7 @@ public class TestInitializer
...
@@ -81,6 +87,7 @@ public class TestInitializer
}
catch
(
Exception
ex
)
}
catch
(
Exception
ex
)
{
{
operationLog
.
error
(
ex
);
CheckedExceptionTunnel
.
wrapIfNecessary
(
ex
);
CheckedExceptionTunnel
.
wrapIfNecessary
(
ex
);
}
}
firstTry
=
false
;
firstTry
=
false
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment