Merge pull request #255 from fkautz/pr_out_renaming_donut_packages_to_match_layout

master
Frederick F. Kautz IV 10 years ago
commit e6db550fdc
  1. 2
      pkg/storage/donut/erasure/erasure_v1/erasure.go
  2. 2
      pkg/storage/donut/erasure/erasure_v1/erasure_test.go
  3. 0
      pkg/storage/donut/fragment/fragment_v1/.gitignore
  4. 2
      pkg/storage/donut/fragment/fragment_v1/fragment.go
  5. 0
      pkg/storage/donut/fragment/fragment_v1/fragment_gen_v1/.gitignore
  6. 4
      pkg/storage/donut/fragment/fragment_v1/fragment_gen_v1/donut_gen.go
  7. 2
      pkg/storage/donut/fragment/fragment_v1/fragment_test.go

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package data_v1 package erasure_v1
import ( import (
"bytes" "bytes"

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package data_v1 package erasure_v1
import ( import (
"bytes" "bytes"

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package frame_v1 package fragment_v1
import ( import (
"bytes" "bytes"

@ -6,7 +6,7 @@ import (
"os" "os"
"reflect" "reflect"
"github.com/minio-io/minio/pkg/storage/donut/frame/frame_v1" "github.com/minio-io/minio/pkg/storage/donut/fragment/fragment_v1"
) )
func main() { func main() {
@ -20,7 +20,7 @@ func main() {
dataBuffer := bytes.NewBuffer(data) dataBuffer := bytes.NewBuffer(data)
err = frame_v1.WriteFrame(file, dataBuffer, uint64(dataBuffer.Len())) err = fragment_v1.WriteFrame(file, dataBuffer, uint64(dataBuffer.Len()))
if err != nil { if err != nil {
panic(err) panic(err)
} }

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package frame_v1 package fragment_v1
import ( import (
"bytes" "bytes"
Loading…
Cancel
Save