-
Neda Moeini authored
- Configured Sentry to include environment information in its setup.
Neda Moeini authored- Configured Sentry to include environment information in its setup.
__init__.py 457 B
import os
from uuid import uuid4
LSO_RESULT_SUCCESS = {
"callback_result": {
"status": "success",
"job_id": str(uuid4()),
"output": "parsed_output",
"return_code": 0,
},
}
LSO_RESULT_FAILURE = {
"callback_result": {
"status": "failure",
"job_id": str(uuid4()),
"output": "parsed_output",
"return_code": 1,
},
}
USER_CONFIRM_EMPTY_FORM = [{}]
os.environ["TESTING"] = "true"