Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-smf-form
Commits
8ba86932
Commit
8ba86932
authored
3 years ago
by
nivetha
Browse files
Options
Download
Patches
Plain Diff
Removed index type from search request
parent
c9aab458
master
bulk-download
cvs_download
delete-form
emailContentUpdate
inspection-flow-changes
institute-district
lat-long
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/tarento/formservice/service/impl/FormsServiceImpl.java
+2
-2
...om/tarento/formservice/service/impl/FormsServiceImpl.java
with
2 additions
and
2 deletions
+2
-2
src/main/java/com/tarento/formservice/service/impl/FormsServiceImpl.java
+
2
−
2
View file @
8ba86932
...
...
@@ -1063,7 +1063,7 @@ public class FormsServiceImpl implements FormsService {
searchSourceBuilder
.
query
(
boolBuilder
);
System
.
out
.
println
(
searchSourceBuilder
);
// es call
SearchRequest
searchRequest
=
new
SearchRequest
(
"fs-plain-form"
).
types
(
"forms"
).
source
(
searchSourceBuilder
);
SearchRequest
searchRequest
=
new
SearchRequest
(
"fs-plain-form"
).
source
(
searchSourceBuilder
);
LOGGER
.
info
(
"Search Request : "
+
searchRequest
);
List
<
Map
<
String
,
Object
>>
response
=
formsDao
.
searchPlainFormResponse
(
searchRequest
);
return
response
;
...
...
@@ -1084,7 +1084,7 @@ public class FormsServiceImpl implements FormsService {
searchSourceBuilder
.
query
(
boolBuilder
);
System
.
out
.
println
(
searchSourceBuilder
);
// es call
SearchRequest
searchRequest
=
new
SearchRequest
(
"fs-plain-form"
).
types
(
"forms"
).
source
(
searchSourceBuilder
);
SearchRequest
searchRequest
=
new
SearchRequest
(
"fs-plain-form"
).
source
(
searchSourceBuilder
);
LOGGER
.
info
(
"Search Request : "
+
searchRequest
);
List
<
Map
<
String
,
Object
>>
response
=
formsDao
.
searchPlainFormResponse
(
searchRequest
);
return
response
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets