Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LimaGroup
Lima-camera-slsdetector
Commits
588a6e5c
Commit
588a6e5c
authored
Mar 08, 2021
by
Alejandro Homs Puron
Committed by
operator for beamline
Mar 08, 2021
Browse files
Protect against exceptions in Jungfrau::Thread processing
parent
dd96373a
Pipeline
#42640
failed with stages
in 7 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/SlsDetectorJungfrau.cpp
View file @
588a6e5c
...
...
@@ -324,7 +324,14 @@ void Jungfrau::Thread::threadFunction()
wait
();
}
if
(
s
==
Running
)
m_jungfrau
->
processOneFrame
(
l
);
try
{
m_jungfrau
->
processOneFrame
(
l
);
}
catch
(
Exception
&
e
)
{
Camera
*
cam
=
m_jungfrau
->
getCamera
();
string
name
=
(
"Jungfrau::Thread::"
"threadFunction"
);
cam
->
reportException
(
e
,
name
);
}
}
s
=
End
;
...
...
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!
Cancel
Please
register
or
sign in
to comment