Skip to content

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
anjor committed Jul 3, 2024
1 parent 7c31558 commit 14ec563
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmd-car-split.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ func newCmd_SplitCar() *cli.Command {
defer fileMutex.Unlock()

if currentFile == nil || currentFileSize+int64(len(data)) > maxFileSize {

// To do: Construct and write the SubSet node

if err := createNewFile(); err != nil {
return err
}
Expand Down Expand Up @@ -185,7 +188,7 @@ func newCmd_SplitCar() *cli.Command {
klog.Exitf("error while accumulating objects: %w", err)
}

// To do: Construct and write the SubSet node
// To do: construct and write the epoch node to the last file

return nil
},
Expand Down

0 comments on commit 14ec563

Please sign in to comment.