Add interface for get_list_of_all_pilorama function #31
No reviewers
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-testlib#31
Loading…
Reference in a new issue
No description provided.
Delete branch "ylukoyan/frostfs-testlib:pilorama_list"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -178,2 +178,4 @@
self.host.delete_pilorama(self.name)
def get_list_of_all_pilorama(self):
return self.host.get_list_of_all_pilorama(self.name)
Currenlty,
host
has noget_list_of_all_pilorama
It's getting out of control, we have too many similar little functions which do something with
data_directory_path
which requires to add new methods to 3 repos (testlib + 2 plugins).I propose to continue with better approach regarding these.
get_data_directory
to host interface and support it in 3 repos (testlib + 2 plugins)This way we will need to support new such methods only in 1 repo instead of 3.
I'll make another PR with proposed changes
Pull request closed