Hello hello!! My Melatno UI is broken and my unde...
# troubleshooting
a
Hello hello!! My Melatno UI is broken and my understanding is it is due to
tap-salesforce
extractor as the
start_date
config parameter expects date format in
RFC3339
(2020-01-01T000000Z) instead of
ISO
as the rest others are in format
yyyy-MM-dd hh:mm:ss
where as meltano.yml doesn’t have the format the Meltano UI (ISO format) is expecting. Error:
Copy code
2022-04-27T18:49:12.091989Z [error    ] Exception on /api/v1/orchestrations/pipeline-schedules [GET] 
Traceback (most recent call last):
  File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 2447, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1952, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/local/lib/python3.8/site-packages/flask_restful/__init__.py", line 271, in error_router
    return original_handler(e)
  File "/usr/local/lib/python3.8/site-packages/flask_restful/__init__.py", line 271, in error_router
    return original_handler(e)
  File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1821, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/local/lib/python3.8/site-packages/flask/_compat.py", line 39, in reraise
    raise value
  File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1950, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/local/lib/python3.8/site-packages/flask/app.py", line 1936, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/usr/local/lib/python3.8/site-packages/meltano/api/controllers/orchestrations.py", line 436, in get_pipeline_schedules
    schedule["start_date"].date().isoformat()
AttributeError: 'str' object has no attribute 'date'
Do we have a solution for this issue? Many thanks 🙂