╭───────────────────────────────────────────────────────────────────────────────── Traceback (most recent call last) ──────────────────────────────────────────────────────────────────────────────────╮ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/slices_clientlib_core/util/pagination.py:90 in __init__ │ │ │ │ 87 │ │ except HttpxConnectError as err: │ │ 88 │ │ │ raise ApiConnectError(url) from err │ │ 89 │ │ try: │ │ ❱ 90 │ │ │ response.raise_for_status() │ │ 91 │ │ │ self._first_page = self._decoder.decode(response.content) │ │ 92 │ │ except HTTPError as err: │ │ 93 │ │ │ raise from_httpx_exception(err) from err │ │ │ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/httpx/_models.py:829 in raise_for_status │ │ │ │ 826 │ │ } │ │ 827 │ │ error_type = error_types.get(status_class, "Invalid status code") │ │ 828 │ │ message = message.format(self, error_type=error_type) │ │ ❱ 829 │ │ raise HTTPStatusError(message, request=request, response=self) │ │ 830 │ │ │ 831 │ def json(self, **kwargs: typing.Any) -> typing.Any: │ │ 832 │ │ return jsonlib.loads(self.content, **kwargs) │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ HTTPStatusError: Server error '500 Internal Server Error' for url 'https://slices-bi.nitlab.uth.gr/apis/bi.slices-ri.eu/v1/projects/proj_account.ilabt.imec.be_5pzabws7n79ydsagfg3vntg590/experiments/exp_expauth.ilabt.imec.be_01m1a4mje2e3zssgr77c8xpz0g/resources/' For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500 The above exception was the direct cause of the following exception: ╭───────────────────────────────────────────────────────────────────────────────── Traceback (most recent call last) ──────────────────────────────────────────────────────────────────────────────────╮ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/slices_cli_bi/commands/bi_helpers.py:83 in wrapper_handle_some_exceptions │ │ │ │ 80 │ def wrapper_handle_some_exceptions(*args, **kwargs): │ │ 81 │ │ """Function wrapper for handle_some_exceptions.""" # noqa: D401 │ │ 82 │ │ try: │ │ ❱ 83 │ │ │ return func(*args, **kwargs) │ │ 84 │ │ except ApiResponseError as e: │ │ 85 │ │ │ if e._httpx_status_error.response.status_code in ( │ │ 86 │ │ │ │ 502, │ │ │ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/slices_cli_bi/commands/bi.py:1289 in destroy_resource │ │ │ │ 1286 │ """ │ │ 1287 │ exp = bi_get_experiment(ctx, experiment) │ │ 1288 │ │ │ ❱ 1289 │ resources_to_delete: Collection[ComputeResource] = _get_requested_bi_resources( │ │ 1290 │ │ ctx, exp, resources, include_expired=False, include_terminated=False │ │ 1291 │ ) │ │ 1292 │ │ │ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/slices_cli_bi/commands/bi.py:135 in _get_requested_bi_resources │ │ │ │ 132 │ │ │ ) │ │ 133 │ │ ) │ │ 134 │ │ │ ❱ 135 │ return [_get_resource(ctx, exp, resource_id) for resource_id in resources] │ │ 136 │ │ 137 │ │ 138 bi_app.add_typer( │ │ │ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/slices_cli_bi/commands/bi.py:1040 in _get_resource │ │ │ │ 1037 │ │ │ ) │ │ 1038 │ │ │ raise typer.Exit(code=1) from err │ │ 1039 │ │ │ ❱ 1040 │ resources = ctx.obj.get_bi_resources_api_by_experiment(experiment).list() │ │ 1041 │ │ │ 1042 │ inactive_resource = None │ │ 1043 │ │ │ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/slices_clientlib_bi/bi_resource.py:458 in list │ │ │ │ 455 │ │ if include_terminated is not None: │ │ 456 │ │ │ params["include_terminated"] = "true" if include_terminated else "false" │ │ 457 │ │ │ │ ❱ 458 │ │ return PagedCollection("resource", ComputeResource, self._base_path, self._client, params) │ │ 459 │ │ │ 460 │ def reboot(self, resource_id: str, type: Literal["SOFT", "HARD"]): │ │ 461 │ │ """Reboot the resource.""" │ │ │ │ /root/.local/share/uv/tools/slices-cli/lib/python3.14/site-packages/slices_clientlib_core/util/pagination.py:93 in __init__ │ │ │ │ 90 │ │ │ response.raise_for_status() │ │ 91 │ │ │ self._first_page = self._decoder.decode(response.content) │ │ 92 │ │ except HTTPError as err: │ │ ❱ 93 │ │ │ raise from_httpx_exception(err) from err │ │ 94 │ │ │ 95 │ def __iter__(self) -> Iterator[T]: │ │ 96 │ │ """Create iterator over items.""" │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ServiceException: ServiceException (for GET https://slices-bi.nitlab.uth.gr/apis/bi.slices-ri.eu/v1/projects/proj_account.ilabt.imec.be_5pzabws7n79ydsagfg3vntg590/experiments/exp_expauth.ilabt.imec.be_01m1a4mje2e3zssgr77c8xpz0g/resources/): Internal Server Error