mirror of
https://github.com/clearml/clearml-serving
synced 2025-01-30 18:36:53 +00:00
Add exit-on-error option for tritonserver (#76)
This fixes #60 Co-authored-by: = <s.bertl@iaea.org>
This commit is contained in:
parent
7ba356efc9
commit
666ce26ab2
@ -540,6 +540,12 @@ def main():
|
||||
parser.add_argument(
|
||||
'--t-log-verbose', type=str,
|
||||
help='<integer> Triton server logging verbosity (default disabled)')
|
||||
parser.add_argument(
|
||||
'--t-exit-on-error', type=bool, default=True,
|
||||
help='Exits the inference server if any error occurs during initialization.'
|
||||
'Recommended to set to True to catch any unanticipated errors.'
|
||||
'False prevents single models breaking the whole tritonserver.'
|
||||
)
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user