Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vlkb-siav2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ViaLactea
vlkb-siav2
Commits
81018cec
Commit
81018cec
authored
6 months ago
by
Robert Butora
Browse files
Options
Downloads
Patches
Plain Diff
fixes buf in SearchServlet.init (synptom: CONFIG from init() was not printed)
parent
55d0c9cb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
data-discovery/src/main/java/webapi/SearchServlet.java
+1
-3
1 addition, 3 deletions
data-discovery/src/main/java/webapi/SearchServlet.java
data-discovery/src/main/java/webapi/formatfilter/FormatResponseFilter.java
+1
-1
1 addition, 1 deletion
...c/main/java/webapi/formatfilter/FormatResponseFilter.java
with
2 additions
and
4 deletions
data-discovery/src/main/java/webapi/SearchServlet.java
+
1
−
3
View file @
81018cec
...
...
@@ -20,7 +20,7 @@ import vo.error.*;
public
class
SearchServlet
extends
javax
.
servlet
.
http
.
HttpServlet
{
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
"P
Search
"
);
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
Search
Servlet
.
class
.
getName
()
);
private
static
final
SearchSettings
settings
=
SearchSettings
.
getInstance
(
"search.properties"
);
final
String
RESPONSE_ENCODING
=
"utf-8"
;
...
...
@@ -31,8 +31,6 @@ public class SearchServlet extends javax.servlet.http.HttpServlet
public
void
init
()
throws
ServletException
{
super
.
init
();
LOGGER
.
config
(
"DB: "
+
settings
.
dbConn
.
toString
());
}
...
...
This diff is collapsed.
Click to expand it.
data-discovery/src/main/java/webapi/formatfilter/FormatResponseFilter.java
+
1
−
1
View file @
81018cec
...
...
@@ -25,7 +25,7 @@ import vo.error.*;
public
class
FormatResponseFilter
implements
Filter
{
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
"
FormatResponseFilter
"
);
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
FormatResponseFilter
.
class
.
getName
()
);
private
static
final
FormatResponseSettings
settings
=
FormatResponseSettings
.
getInstance
(
"formatresponsefilter.properties"
);
...
...
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