A loose federation of distributed, typed datasets
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove errant mkdir call that created local test-bucket artifact

The Repo.insert() method was calling metadata_path.parent.mkdir() which
created a local directory when it should only be writing to S3. S3 doesn't
require directories to be pre-created - s3fs handles this automatically.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+1 -1
.chainlink/issues.db

This is a binary file and will not be displayed.

+1 -1
src/atdata/local.py
··· 300 300 / 'metadata' 301 301 / f'atdata-metadata--{new_uuid}.msgpack' 302 302 ) 303 - metadata_path.parent.mkdir( parents = True, exist_ok = True ) 303 + # Note: S3 doesn't need directories created beforehand - s3fs handles this 304 304 305 305 if ds.metadata is not None: 306 306 with cast( BinaryIO, hive_fs.open( metadata_path, 'wb' ) ) as f: