Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
data_importer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IA2
data_importer
Commits
6aae585d
Commit
6aae585d
authored
May 19, 2014
by
Marco De Marco
Browse files
Options
Downloads
Patches
Plain Diff
Code format improved
parent
c42a9827
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/Client.cpp
+1
-3
1 addition, 3 deletions
src/Client.cpp
src/DataImporter.cpp
+1
-2
1 addition, 2 deletions
src/DataImporter.cpp
src/DataImporter.h
+161
-161
161 additions, 161 deletions
src/DataImporter.h
with
163 additions
and
166 deletions
src/Client.cpp
+
1
−
3
View file @
6aae585d
...
...
@@ -249,9 +249,7 @@ void Client::handleUpdateLists(const boost::system::error_code& errorCode)
}
else
if
(
errorCode
==
boost
::
asio
::
error
::
operation_aborted
)
{
DEBUG_STREAM
<<
"Client::handleUpdateLists() STOP"
<<
endl
;
//TODO: change state and status
DEBUG_STREAM
<<
"Client::handleUpdateLists() stopping"
<<
endl
;
}
else
{
...
...
This diff is collapsed.
Click to expand it.
src/DataImporter.cpp
+
1
−
2
View file @
6aae585d
...
...
@@ -178,7 +178,7 @@ void DataImporter::init_device()
{
set_state
(
Tango
::
FAULT
);
std
::
stringstream
error_stream
;
error_stream
<<
"DataImporter::init_device() "
<<
ex
.
what
()
<<
std
::
endl
;
error_stream
<<
"DataImporter::init_device() "
<<
ex
.
what
();
set_status
(
error_stream
.
str
());
}
catch
(...)
...
...
@@ -734,7 +734,6 @@ void DataImporter::on()
set_status
(
"DataImporter::On() unknown error"
);
}
/*----- PROTECTED REGION END -----*/
// DataImporter::on
}
//--------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
src/DataImporter.h
+
161
−
161
View file @
6aae585d
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
sign in
to comment