Error Log - conrad-blucher-institute/semaphore GitHub Wiki
This page documents common errors for Semaphore developers. Make sure that the most recent error fix is inserted at the beginning of the list.
ModuleNotFoundError: No module named ingestion class name in DI_Classes
This error commonly occurs when unit testing. This error appears because Python is unable to find the file you are attempting to test.
Fix: This command makes it easier for python to find the file being tested
import sys
sys.path.append('/app/src')
- Make sure you are testing inside the container
Bad Minute Crontab
This error usually occurs when initializing a new crontab.
Fix:
- Ensure there are no spaces in between the commands.
- Always keep a space at the end of the crontab