uploadType change between 0.2.3 and 0.3.0
I'm trying to write remotely a file in my bucket storage.
In 0.2.3 I see GCSFS sending: https://www.googleapis.com:443 "POST /upload/storage/v1/b/dpe-sandbox/o?uploadType=multipart HTTP/1.1" 429 463
In 0.3.0: https://www.googleapis.com:443 "POST /upload/storage/v1/b/dpe-sandbox/o?uploadType=resumable&upload_id=AEnB2Uo0y3-rNF5CNZ-nXPfhZRxnxrA1hw2Gb6Wl79eD2J7cMqH-4I-8wdr7pEIiUqK8n-GIdJuUMBDDJq_R84MpzpimRhtZuQ&uploadType=resumable HTTP/1.1" 429 463
I get an error 410 from Google, but wondering why uploadType configuration change in 0.3.0?
How to reproduce:
pip3 install gcsfs==0.3.0
pip3 install papermill==1.1.0
papermill gs://cloud-samples-data/papermill/samples/test.ipynb gs://your-bucket/test.ipynb
I tried to reproduce with the same versions and I see that in 0.3.0 the Cloud command are responding with a 429 first then a 410 error.
Reference: https://github.com/nteract/papermill/issues/312