Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working with Mage AI in a local environment on M1 Mac I faced the following error when trying to write data to datalake. ``` Generic S3 error: Error after 10 retries in 2.612435942s, max_retries:10, retry_timeout:180s, source:error sending request for url (https://s3..../_delta_log/_last_checkpoint): error trying to connect: invalid peer certificate: BadSignature ``` Seems it's a [known issue](delta-io/delta-rs#2551). And can be solved by upgrading deltalake lib to 0.18.2 version. This PR updates deltalake version from 0.17.4 to the most recent 0.20.0., however [`overwrite_schema` parameter has been dropped](https://github.com/delta-io/delta-rs/releases#:~:text=fix%3A%20remove%20deprecated%20overwrite_schema%20configuration%20which%20has%20incorrect%20behavior%20by) since 0.18.0 due to > fix: remove deprecated overwrite_schema configuration which has incorrect behavior
- Loading branch information