Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-SMF
Commits
444e7c09
Commit
444e7c09
authored
Oct 12, 2022
by
Tien Thinh NGUYEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid freezing SMF with a timeout
parent
adf950ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
src/smf_app/smf_sbi.cpp
src/smf_app/smf_sbi.cpp
+12
-7
No files found.
src/smf_app/smf_sbi.cpp
View file @
444e7c09
...
@@ -1322,13 +1322,18 @@ void smf_sbi::curl_release_handles() {
...
@@ -1322,13 +1322,18 @@ void smf_sbi::curl_release_handles() {
//---------------------------------------------------------------------------------------------
//---------------------------------------------------------------------------------------------
uint32_t
smf_sbi
::
get_available_response
(
boost
::
shared_future
<
uint32_t
>&
f
)
{
uint32_t
smf_sbi
::
get_available_response
(
boost
::
shared_future
<
uint32_t
>&
f
)
{
f
.
wait
();
// Wait for it to finish
boost
::
future_status
status
;
assert
(
f
.
is_ready
());
// wait for timeout or ready
assert
(
f
.
has_value
());
status
=
f
.
wait_for
(
boost
::
chrono
::
milliseconds
(
FUTURE_STATUS_TIMEOUT_MS
));
assert
(
!
f
.
has_exception
());
if
(
status
==
boost
::
future_status
::
ready
)
{
assert
(
f
.
is_ready
());
uint32_t
response_code
=
f
.
get
();
assert
(
f
.
has_value
());
return
response_code
;
assert
(
!
f
.
has_exception
());
uint32_t
response_code
=
f
.
get
();
return
response_code
;
}
else
{
return
408
;
// timeout, TODO: remove hardcoded value
}
}
}
//---------------------------------------------------------------------------------------------
//---------------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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