netmap: Regenerate to add LIKE
operation for filter
#87
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
5 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-api-go#87
Loading…
Reference in a new issue
No description provided.
Delete branch "acid-ant/frostfs-api-go:feature/policy-like"
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?
Also add in Makefile new target
protoc-install
Signed-off-by: Anton Nikiforov an.nikiforov@yadro.com
6e34ade89b
tobca2b6a414
acid-ant referenced this pull request from TrueCloudLab/frostfs-sdk-go2024-06-24 12:12:17 +00:00
LIKE
operation forfilter
#231@ -114,2 +114,4 @@
LIKE
)
const LIKE_WILDCARD = "*"
The linter doesn't pass this snake-case name :(
Thanks, fixed.
bca2b6a414
toeed7162e68
@ -41,3 +64,3 @@
@for f in `find . -type f -name '*.proto' -not -path './vendor/*'`; do \
echo "⇒ Processing $$f "; \
protoc \
$(PROTOC_DIR)/bin/protoc \
protoc
target should be also fixed like infrostfs-node
You mean check for
PROTOC_DIR
andPROTOC_GEN_GO_DIR
? Added.Also removed redundant steps from target
protoc
.eed7162e68
toc55fbd1e87
c55fbd1e87
toffd9d34365
ffd9d34365
to05d0f8e092
05d0f8e092
toc01406ce25
@ -114,2 +114,4 @@
LIKE
)
const LikeWildcard = "*"
I don't think it is useful -- almost always better to inline it in policy, than do
ip ~ ".." + LikeWildcard
Ok, removed.
c01406ce25
to35e7397d48
make protoc
#101