Facing this error while adding new connector from ...
# ask-ai
d
Facing this error while adding new connector from Open source Airbyte UI Error message - Internal Server Error: Get Spec job failed. Airbyte version - 0.44.0
k
The "Internal Server Error: Get Spec job failed" error can occur due to various reasons. Here are some possible solutions based on the knowledge sources: 1. Check your Docker platform: In some cases, the Docker platform was the issue. The DOCKER_DEFAULT_PLATFORMS are different in Mac and Win. Make sure your Docker platform is compatible with Airbyte. [Source](https://github.com/airbytehq/airbyte/issues/12030) 2. Check your image name: If you are deploying on Kubernetes, the use of "_" characters in the image name can cause issues. Try replacing the "_" characters in the image name with "-". [Source](https://discuss.airbyte.io/t/646) 3. Run spec and check commands: Try running the
spec
and
check
commands on the connector to confirm that the connector is valid and it is able to connect to the source. Here's how to run them in Python:
Copy code
python main.py spec     python main.py check --config secrets/config.json
[Source](https://discuss.airbyte.io/t/2508) 4. Check your libraries: If you have imported any libraries in your connector, make sure to mention those libraries and their versions in the
setup.py
file, which can be found in the root directory of your connector. [Source](https://discuss.airbyte.io/t/2508) If none of these solutions work, it would be helpful to provide more details about your setup and the steps you've taken so far.