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
Sign in
Toggle navigation
Menu
MKCLOS
Core Development Platform
corepkgv2
Merge requests
!123
An error occurred while fetching the assigned milestone of the selected merge_request.
Fix: Error suppressed in CallService()
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Error suppressed in CallService()
ab_Fix_ErrorCallService
into
devbranch
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Akshay Bharambe
requested to merge
ab_Fix_ErrorCallService
into
devbranch
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Fix: Error suppressed in CallService(). This makes users unaware of the actual error from called service.
Closes
#5 (closed)
0
0
Merge request reports
Compare
devbranch
devbranch (base)
and
latest version
latest version
3779bfb7
1 commit,
5 years ago
1 file
+
2
−
2
Expand all files
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
routebuildermdl/serviceCachemdl.go
+
2
−
2
Options
@@ -175,8 +175,8 @@ func CallService(name string, rs *gjson.Result, isRestricted bool, isRoleBased b
serviceCache
:=
tmpSvcCache
res
,
_
,
err
:=
serviceCache
.
Service
(
rs
,
p
)
if
err
!=
nil
{
loggermdl
.
LogError
(
"Service execution failed for "
,
name
)
return
nil
,
err
ormdl
.
Wrap
(
"Service execution failed for "
+
name
)
loggermdl
.
LogError
(
"Service execution failed for "
,
name
,
" : "
,
err
)
return
nil
,
err
}
return
res
,
nil
}
Menu
Explore
Projects
Groups
Topics
Snippets