Description
ListBuckets currently returns a hardcoded epoch timestamp (1970-01-01T00:00:00.000Z) for every bucket's creation date instead of the real value.
Location: src/handlers/bucket.rs:25
// TODO: persist and return actual bucket creation date
creation_date: "1970-01-01T00:00:00.000Z".to_string(),
Expected behavior
The bucket creation date should be recorded when the bucket is created (e.g., stored in the metadata database) and returned accurately in ListBuckets responses.
Description
ListBucketscurrently returns a hardcoded epoch timestamp (1970-01-01T00:00:00.000Z) for every bucket's creation date instead of the real value.Location:
src/handlers/bucket.rs:25Expected behavior
The bucket creation date should be recorded when the bucket is created (e.g., stored in the metadata database) and returned accurately in
ListBucketsresponses.