Make PrmContainerEACL fields public #145
No reviewers
TrueCloudLab/storage-services-committers
TrueCloudLab/storage-services-developers
Labels
No labels
P0
P1
P2
P3
good first issue
pool
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
6 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-sdk-go#145
Loading…
Reference in a new issue
No description provided.
Delete branch "aarifullin/frostfs-sdk-go:feature/121-prm_eacl"
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?
Airat Arifullin a.arifullin@yadro.com
@ -2516,2 +2516,2 @@
if cnrID != nil {
prm.SetContainerID(*cnrID)
prm := PrmContainerEACL{
ContainerID: *cnrID,
It seems we have to check if
cnrID
isn'tnil
You're right. I ignored the check
20e40a6086
toa56d873077
@ -2516,2 +2517,3 @@
if cnrID != nil {
prm.SetContainerID(*cnrID)
prm = PrmContainerEACL{
ContainerID: *cnrID,
Not functional but why don't we write
prm.ContainerID = *cnrID
(we have already initializedprm
above)?Okay, fixed 👍
a56d873077
to00355300f7