Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
mantidproject
mantid
Commits
f704720b
Commit
f704720b
authored
7 years ago
by
Matthew Andrew
Browse files
Options
Downloads
Patches
Plain Diff
Re #21709 Removed unused async methods
parent
082a992b
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/Kernel/inc/MantidKernel/ErrorReporter.h
+0
-4
0 additions, 4 deletions
Framework/Kernel/inc/MantidKernel/ErrorReporter.h
Framework/Kernel/src/ErrorReporter.cpp
+0
-6
0 additions, 6 deletions
Framework/Kernel/src/ErrorReporter.cpp
with
0 additions
and
10 deletions
Framework/Kernel/inc/MantidKernel/ErrorReporter.h
+
0
−
4
View file @
f704720b
...
...
@@ -53,12 +53,8 @@ protected:
virtual
int
sendReport
(
const
std
::
string
&
message
,
const
std
::
string
&
url
);
private:
/// Asynchronous method for sending post request
int
sendErrorAsyncImpl
(
const
std
::
string
&
message
);
const
std
::
string
m_application
;
/// Async method for sending error report
Poco
::
ActiveMethod
<
int
,
std
::
string
,
ErrorReporter
>
m_errorActiveMethod
;
/// Stores the exit code of mantid if it has crashed
const
std
::
string
m_exitCode
;
/// The time mantid has been running
...
...
This diff is collapsed.
Click to expand it.
Framework/Kernel/src/ErrorReporter.cpp
+
0
−
6
View file @
f704720b
...
...
@@ -29,7 +29,6 @@ ErrorReporter::ErrorReporter(std::string application,
Types
::
Core
::
time_duration
upTime
,
std
::
string
exitCode
,
bool
share
)
:
m_application
(
application
),
m_errorActiveMethod
(
this
,
&
ErrorReporter
::
sendErrorAsyncImpl
),
m_exitCode
(
exitCode
),
m_upTime
(
upTime
),
m_share
(
share
),
m_name
(
""
),
m_email
(
""
)
{
int
retval
=
Mantid
::
Kernel
::
ConfigService
::
Instance
().
getValue
(
...
...
@@ -46,7 +45,6 @@ ErrorReporter::ErrorReporter(std::string application,
std
::
string
exitCode
,
bool
share
,
std
::
string
name
,
std
::
string
email
)
:
m_application
(
application
),
m_errorActiveMethod
(
this
,
&
ErrorReporter
::
sendErrorAsyncImpl
),
m_exitCode
(
exitCode
),
m_upTime
(
upTime
),
m_share
(
share
),
m_name
(
name
),
m_email
(
email
)
{
int
retval
=
Mantid
::
Kernel
::
ConfigService
::
Instance
().
getValue
(
...
...
@@ -119,10 +117,6 @@ std::string ErrorReporter::generateErrorMessage() {
return
writer
.
write
(
message
);
}
int
ErrorReporter
::
sendErrorAsyncImpl
(
const
std
::
string
&
message
)
{
return
this
->
sendReport
(
message
,
m_url
);
}
/** Submits a post request to the specified url with the message as the body
@param message : String containg json formatted error message
@param url : The url to send the post request to
...
...
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