Skip to content

Commit

Permalink
Merge pull request #6594 from pankajgavit/sharded_pitr
Browse files Browse the repository at this point in the history
Implemented pitr testcase
  • Loading branch information
deepthi authored Aug 26, 2020
2 parents 588427c + 6baadd2 commit 277596e
Show file tree
Hide file tree
Showing 5 changed files with 561 additions and 312 deletions.
18 changes: 17 additions & 1 deletion go/test/endtoend/recovery/pitr/binlog_server.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2020 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package pitr

import (
Expand Down Expand Up @@ -38,7 +54,7 @@ type mysqlMaster struct {

// newBinlogServer returns an instance of binlog server
func newBinlogServer(hostname string, port int) (*binLogServer, error) {
dataDir := path.Join(os.Getenv("VTDATAROOT"), binlogDataDir)
dataDir := path.Join(os.Getenv("VTDATAROOT"), fmt.Sprintf("%s_%d", binlogDataDir, port))
fmt.Println(dataDir)
if _, err := os.Stat(dataDir); os.IsNotExist(err) {
err := os.Mkdir(dataDir, 0700)
Expand Down
134 changes: 0 additions & 134 deletions go/test/endtoend/recovery/pitr/main_test.go

This file was deleted.

172 changes: 0 additions & 172 deletions go/test/endtoend/recovery/pitr/pitr_test.go

This file was deleted.

Loading

0 comments on commit 277596e

Please sign in to comment.