Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename module after fork #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion bench/bench.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package raftbench
import (
"testing"

"github.com/hashicorp/raft"
"github.com/weaviate/raft"
)

func FirstIndex(b *testing.B, store raft.LogStore) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/hashicorp/raft
module github.com/weaviate/raft

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion raft-compat/prevote_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
package raft_compat

import (
"github.com/hashicorp/raft"
raftprevious "github.com/hashicorp/raft-previous-version"
"github.com/hashicorp/raft/compat/testcluster"
"github.com/hashicorp/raft/compat/utils"
"github.com/stretchr/testify/require"
"github.com/weaviate/raft"
"testing"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion raft-compat/rolling_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ package raft_compat

import (
"fmt"
"github.com/hashicorp/raft"
raftprevious "github.com/hashicorp/raft-previous-version"
"github.com/hashicorp/raft/compat/testcluster"
"github.com/hashicorp/raft/compat/utils"
"github.com/stretchr/testify/require"
"github.com/weaviate/raft"
"testing"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion raft-compat/testcluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ package testcluster

import (
"fmt"
"github.com/hashicorp/raft"
raftprevious "github.com/hashicorp/raft-previous-version"
"github.com/stretchr/testify/require"
"github.com/weaviate/raft"
"testing"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion raft-compat/utils/test_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ package utils

import (
"fmt"
"github.com/hashicorp/raft"
raftprevious "github.com/hashicorp/raft-previous-version"
"github.com/hashicorp/raft/compat/testcluster"
"github.com/stretchr/testify/require"
"github.com/weaviate/raft"
"testing"
"time"
)
Expand Down