You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was previously able to successfully create a workspace using the Airbyte API (/v1/workspaces), but since the latest commit (16 hours ago), the API is consistently returning a 500 Internal Server Error with the response:
json
Copy
Edit
{
"status": 500,
"type": "https://reference.airbyte.com/reference/errors",
"title": "unexpected-problem",
"detail": "An unexpected problem has occurred. If this is an error that needs to be addressed, please submit a pull request or github issue.",
"documentationUrl": null,
"data": {
"message": "List is empty."
}
}
Steps to Reproduce:
Send a POST request to https://api.airbyte.com/v1/workspaces with the following payload:
json
Copy
Edit
{
"name": "test"
}
Include the necessary authorization headers.
Observe the 500 Internal Server Error response with "message": "List is empty."
Expected Behavior:
The API should return a successful response and create a new workspace as it did before.
Actual Behavior:
The API now returns a 500 error with "message": "List is empty.", preventing workspace creation.
Additional Context:
This issue was not present until approximately 16 hours ago.
A new commit was pushed around that time, which might have caused this regression.
No changes were made to the request payload, headers, or API usage on my end.
Could you please confirm if this is a bug introduced in the latest update? Let me know if any further details are required.
The text was updated successfully, but these errors were encountered:
Topic
No response
Relevant information
I was previously able to successfully create a workspace using the Airbyte API (/v1/workspaces), but since the latest commit (16 hours ago), the API is consistently returning a 500 Internal Server Error with the response:
json
Copy
Edit
{
"status": 500,
"type": "https://reference.airbyte.com/reference/errors",
"title": "unexpected-problem",
"detail": "An unexpected problem has occurred. If this is an error that needs to be addressed, please submit a pull request or github issue.",
"documentationUrl": null,
"data": {
"message": "List is empty."
}
}
Steps to Reproduce:
Send a POST request to https://api.airbyte.com/v1/workspaces with the following payload:
json
Copy
Edit
{
"name": "test"
}
Include the necessary authorization headers.
Observe the 500 Internal Server Error response with "message": "List is empty."
Expected Behavior:
The API should return a successful response and create a new workspace as it did before.
Actual Behavior:
The API now returns a 500 error with "message": "List is empty.", preventing workspace creation.
Additional Context:
This issue was not present until approximately 16 hours ago.
A new commit was pushed around that time, which might have caused this regression.
No changes were made to the request payload, headers, or API usage on my end.
Could you please confirm if this is a bug introduced in the latest update? Let me know if any further details are required.
The text was updated successfully, but these errors were encountered: