Melly Beechwood

Results 29 comments of Melly Beechwood
trafficstars

#688 was put in before last 1.0.6 and tested.

#689 Adds the push release.

This chunk is ready for review. :) Please check my notes above for the two places I'd really like an extra look/question.

This is still happening. Any update?

I'm happy to grab this one. It's easy and just needs done while watching a christmas movie or two :)

My team is also still experiencing this. Was the temporary fix on a private build ever merged in as a public fix?

I'd like to expand on this question, I noticed for NYC that the daily is complete but when you look at hourly for 2019 there is no prec or any...

We did have a patch around this, but it would be nice if this worked as expected for GFS

```python def custom_file_metadata(file_path): fs = GCSFileSystem() stat_result = fs.stat(file_path) metadata = { "file_path": file_path, "file_name": file_path.split("/")[-1], } for key in ["created", "mtime", "atime"]: value = stat_result.get(key) if isinstance(value, datetime): metadata[f"{key}_date"]...