Skip to content

Commit

Permalink
Merge branch 'master' into make_dashboard_work
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot[bot] committed Dec 20, 2023
2 parents d9e888e + d98daf3 commit d64eb18
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ test-tso-consistency: install-tools
CGO_ENABLED=1 go test -race -tags without_dashboard,tso_consistency_test,deadlock $(TSO_INTEGRATION_TEST_PKGS) || { $(FAILPOINT_DISABLE); exit 1; }
@$(FAILPOINT_DISABLE)

REAL_CLUSTER_TEST_PATH := $(ROOT_PATH)/tests/integrations/realtiup
REAL_CLUSTER_TEST_PATH := $(ROOT_PATH)/tests/integrations/realcluster

test-real-cluster:
# testing with the real cluster...
Expand Down
2 changes: 1 addition & 1 deletion pd.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
{
"name": "real-cluster-tests",
"path": "tests/integrations/realtiup"
"path": "tests/integrations/realcluster"
},
{
"name": "pd-tso-bench",
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/tikv/pd/tests/integrations/realtiup
module github.com/tikv/pd/tests/integrations/realcluster

go 1.21

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package realtiup
package realcluster

import (
"testing"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package realtiup
package realcluster

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package realtiup
package realcluster

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package realtiup
package realcluster

import (
"testing"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package realtiup
package realcluster

import (
"time"
Expand All @@ -24,7 +24,7 @@ const physicalShiftBits = 18

var (
pdAddrs = []string{"127.0.0.1:2379"}
pdHTTPCli = http.NewClient("pd-realtiup-test", pdAddrs)
pdHTTPCli = http.NewClient("pd-real-cluster-test", pdAddrs)
)

// GetTimeFromTS extracts time.Time from a timestamp.
Expand Down
File renamed without changes.

0 comments on commit d64eb18

Please sign in to comment.