-
### I confirm that:
- [X] I have searched the existing [open AND closed issues](https://github.com/navidrome/navidrome/issues?q=is%3Aissue) to see if an issue already exists for the bug I've encoun…
-
I wound up using the `HTTPStatus` IntEnum for a status code in my `func.HttpResponse` returns but noticed the actual web response I was getting was always 200, even when doing something like `status_c…
-
Problem: I need to create api and some methods I call can take up to 45 seconds to generate a response.
Is there a way to remove or increase timeout.
I copied example with delayed response and inc…
-
The SDK handles the HTTP Status in the following way
````java
public ResultResponse(int statusCode) {
super();
this.statusCode = statusCode;
if (statusCode >= 200 &&…
-
## 1. RestAPI 요청 시, 발생할 수 있는 400 대 ClientRequest(Series.CLIENT_ERROR)에러와 사용자 정의 예외 처리를 제외한 모든 500 에러(Internal Server Error) 예외 처리 알아보기
⇒ “**스프링 예외를 미리 처리해둔 추상 클래스ResponseEntityExceptionHandler*…
-
I'm using the p-queue for throttling, where potentially the API I am trying to hit could still rate limit me.
It would be great if there was a function I could use to handle those timeout after I cat…
-
모든 Exception Code는 밑에 인터페이스를 구현합니다.
HttpStatus 는 상태 코드로, 발생한 예외의 HttpStatus
Code는 예외 이름
msg는 예외 설명
```java
public interface ExceptionCode {
HttpStatus getStatus();
String getCode();
…
-
### Description
```
apiVersion: kuma.io/v1alpha1
kind: MeshFaultInjection
metadata:
name: default
namespace: kong-mesh-system
labels:
kuma.io/mesh: default # optional, defaults to `d…
-
If the rack gem isn't present, the engine emits errors such as:
```
An error occurred while Rails/HttpStatus cop was inspecting /code/app/controllers/errors_controller.rb:6:4.
```
See https://…
-
**POST**
```java
@PostMapping
// @ResponseStatus(HttpStatus.CREATED) // assim tmb é possível
public ResponseEntity save(@RequestBody Anime anime){
// Eu utilizo o Jackson para…