-
Notifications
You must be signed in to change notification settings - Fork 812
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change cadence config to dynamic (#851)
* Add unit tests for Collection getProperty * Change frontend config to dynamic * Fix typo * test * revert test * Change default property values * Remove not used config and dead code * Rename frontend config * Add filter to frontend visibilityMaxPageSize * Change frontend key name * Add test * Revert manual test * Add filter to HistoryMaxPageSize * Fix typo * Change history cache * Add timer configs * Add transferQueueProcessor settings * Add ReplicatorQueueProcessor settings * Add persistence settings * Add remaining settings * Add remaining in matching * Refactor keys from array to map * refactor get property with domain filter * Refactor property with filter * Small change of hitoryReplicator log
- Loading branch information
Showing
31 changed files
with
575 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright (c) 2017 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package dynamicconfig | ||
|
||
import "time" | ||
|
||
// These mock functions are for tests to use config properties that are dynamic | ||
|
||
// GetIntPropertyFn returns value as IntPropertyFn | ||
func GetIntPropertyFn(value int) func(opts ...FilterOption) int { | ||
return func(...FilterOption) int { return value } | ||
} | ||
|
||
// GetFloatPropertyFn returns value as FloatPropertyFn | ||
func GetFloatPropertyFn(value float64) func(opts ...FilterOption) float64 { | ||
return func(...FilterOption) float64 { return value } | ||
} | ||
|
||
// GetBoolPropertyFn returns value as BoolPropertyFn | ||
func GetBoolPropertyFn(value bool) func(opts ...FilterOption) bool { | ||
return func(...FilterOption) bool { return value } | ||
} | ||
|
||
// GetDurationPropertyFn returns value as DurationPropertyFn | ||
func GetDurationPropertyFn(value time.Duration) func(opts ...FilterOption) time.Duration { | ||
return func(...FilterOption) time.Duration { return value } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.