Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
dcdb
dcdb
Commits
5e616f21
Commit
5e616f21
authored
Jan 13, 2021
by
Michael Ott
Browse files
Make REST API exceptions verbose
parent
a79ffd56
Changes
1
Show whitespace changes
Inline
Side-by-side
common/src/RESTHttpsServer.cpp
View file @
5e616f21
...
@@ -89,7 +89,8 @@ RESTHttpsServer::RESTHttpsServer(serverSettings_t settings) :
...
@@ -89,7 +89,8 @@ RESTHttpsServer::RESTHttpsServer(serverSettings_t settings) :
}
catch
(
const
std
::
exception
&
e
)
{
}
catch
(
const
std
::
exception
&
e
)
{
ServerLOG
(
fatal
)
<<
"Could not load certificate OR private key settings file! "
ServerLOG
(
fatal
)
<<
"Could not load certificate OR private key settings file! "
"Please ensure the paths in the config file are valid!"
;
"Please ensure the paths in the config file are valid!"
;
throw
;
std
::
runtime_error
re
(
"RESTAPI config error"
);
throw
re
;
}
}
// 2048bit Diffie-Hellman parameters from RFC3526
// 2048bit Diffie-Hellman parameters from RFC3526
...
@@ -107,7 +108,8 @@ RESTHttpsServer::RESTHttpsServer(serverSettings_t settings) :
...
@@ -107,7 +108,8 @@ RESTHttpsServer::RESTHttpsServer(serverSettings_t settings) :
_acceptor
->
set_option
(
tcp
::
acceptor
::
reuse_address
(
true
));
_acceptor
->
set_option
(
tcp
::
acceptor
::
reuse_address
(
true
));
}
catch
(
const
std
::
exception
&
e
)
{
}
catch
(
const
std
::
exception
&
e
)
{
ServerLOG
(
fatal
)
<<
"RestAPI address invalid! Please make sure IP address and port are valid!"
;
ServerLOG
(
fatal
)
<<
"RestAPI address invalid! Please make sure IP address and port are valid!"
;
throw
;
std
::
runtime_error
re
(
"RESTAPI config error"
);
throw
re
;
}
}
}
}
...
...
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