Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion broker/protocol/fragment_extensions.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"path"
"strconv"
"strings"
"unique"
)

// ContentName returns the content-addressed base file name of this Fragment.
Expand Down Expand Up @@ -78,7 +79,7 @@ func ParseFragmentFromRelativePath(journal Journal, name string) (Fragment, erro
End: end,
Sum: SHA1SumFromDigest(sum),
CompressionCodec: cc,
PathPostfix: postfix,
PathPostfix: unique.Make(postfix).Value(),
}
}
return f, f.Validate()
Expand Down
Loading