-
Notifications
You must be signed in to change notification settings - Fork 351
New issue
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
Make min-drop-probability of PHC optional #3067
Conversation
132bdd8
to
464a07c
Compare
The default value (0.0) makes some sense and is equivalent to how PHC was working before. Signed-off-by: Roman Zavodskikh <roman.zavodskikh@zalando.de>
464a07c
to
d693900
Compare
👍 |
1 similar comment
👍 |
@@ -21,6 +21,7 @@ import ( | |||
"time" | |||
"unicode/utf8" | |||
|
|||
"golang.org/x/exp/maps" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is now in stdlib, see https://pkg.go.dev/maps
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but there is no maps.Keys
method on the stdlib page.
https://pkg.go.dev/maps
The experimental for comparison.
https://pkg.go.dev/golang.org/x/exp/maps
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, indeed golang/go#61538. Thanks for checking
[Changes](zalando/skipper@v0.21.76...v0.21.86) * zalando/skipper#3067 * zalando/skipper#3066 * zalando/skipper#3060 * zalando/skipper#3061 * zalando/skipper#3062 * zalando/skipper#3063 * zalando/skipper#3064 * zalando/skipper#3057 * zalando/skipper#3055 * zalando/skipper#3053 See closed #7450 Signed-off-by: Alexander Yastrebov <alexander.yastrebov@zalando.de>
The default value (0.0) makes some sense and is equivalent to how PHC was working before. Signed-off-by: Roman Zavodskikh <roman.zavodskikh@zalando.de> Co-authored-by: Roman Zavodskikh <roman.zavodskikh@zalando.de>
The default value (0.0) makes some sense and is equivalent to how PHC was working before.