We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
class SheepdogDriver(driver.VolumeDriver): def init(self, _args, *_kwargs): self.stats_pattern = re.compile(r'[\w\s%]Total\s(\d+)\s(\d+)') コンストラクタ内の上記のstat_patternは利用されていないため不要。削除漏れ。
dog node infoの文字列切り出しはSheepdogClientクラスの以下のクラス変数を利用している。 STATS_PATTERN = re.compile(r'[\w\s%]Total\s(\d+)\s(\d+)\s(\d+)')
The text was updated successfully, but these errors were encountered:
Backupがマージされ次第、次のパッチで修正します。 https://review.openstack.org/#/c/194532/
Sorry, something went wrong.
No branches or pull requests
class SheepdogDriver(driver.VolumeDriver):
def init(self, _args, *_kwargs):
self.stats_pattern = re.compile(r'[\w\s%]Total\s(\d+)\s(\d+)')
コンストラクタ内の上記のstat_patternは利用されていないため不要。削除漏れ。
dog node infoの文字列切り出しはSheepdogClientクラスの以下のクラス変数を利用している。
STATS_PATTERN = re.compile(r'[\w\s%]Total\s(\d+)\s(\d+)\s(\d+)')
The text was updated successfully, but these errors were encountered: