1 Star 0 Fork 0

13683679291/fabric

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
pause_resume.go 1.43 KB
Copy Edit Raw Blame History
Wenjian Qiao authored 2019-08-29 21:08 +08:00 . [FAB-16504] pause and resume a channel
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package kvledger
import (
"github.com/hyperledger/fabric/common/ledger/util/leveldbhelper"
"github.com/hyperledger/fabric/core/ledger/kvledger/msgs"
"github.com/pkg/errors"
)
// PauseChannel updates the channel status to inactive in ledgerProviders.
func PauseChannel(rootFSPath, ledgerID string) error {
if err := pauseOrResumeChannel(rootFSPath, ledgerID, msgs.Status_INACTIVE); err != nil {
return err
}
logger.Infof("The channel [%s] has been successfully paused", ledgerID)
return nil
}
// ResumeChannel updates the channel status to active in ledgerProviders
func ResumeChannel(rootFSPath, ledgerID string) error {
if err := pauseOrResumeChannel(rootFSPath, ledgerID, msgs.Status_ACTIVE); err != nil {
return err
}
logger.Infof("The channel [%s] has been successfully resumed", ledgerID)
return nil
}
func pauseOrResumeChannel(rootFSPath, ledgerID string, status msgs.Status) error {
fileLock := leveldbhelper.NewFileLock(fileLockPath(rootFSPath))
if err := fileLock.Lock(); err != nil {
return errors.Wrap(err, "as another peer node command is executing,"+
" wait for that command to complete its execution or terminate it before retrying")
}
defer fileLock.Unlock()
idStore, err := openIDStore(LedgerProviderPath(rootFSPath))
if err != nil {
return err
}
defer idStore.db.Close()
return idStore.updateLedgerStatus(ledgerID, status)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mmcro/fabric.git
git@gitee.com:mmcro/fabric.git
mmcro
fabric
fabric
v2.1.1

Search