-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-1.11] Flags for setting poll timeout and poll interval (#633)
* use context poll interval/timeout in DeleteResources (#626) * use context poll interval/timeout in DeleteResources * move timings to state to break dep cycle * comments * Flags for setting poll timeout and poll interval (#630) * Flags for setting poll timeout and poll interval * Rebase on latest changes when timings were moved to state package * Move setting default pollInterval and pollTimeout before applying opts --------- Co-authored-by: Marek Schmidt <[email protected]>
- Loading branch information
Showing
5 changed files
with
70 additions
and
23 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
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,52 @@ | ||
/* | ||
Copyright 2021 The Knative Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package state | ||
|
||
import ( | ||
"context" | ||
"time" | ||
) | ||
|
||
const ( | ||
DefaultPollInterval = 3 * time.Second | ||
DefaultPollTimeout = 2 * time.Minute | ||
) | ||
|
||
type timingsKey struct{} | ||
type timingsType struct { | ||
interval time.Duration | ||
timeout time.Duration | ||
} | ||
|
||
// ContextWithPollTimings returns a context with poll timings set | ||
func ContextWithPollTimings(ctx context.Context, interval, timeout time.Duration) context.Context { | ||
return context.WithValue(ctx, timingsKey{}, timingsType{ | ||
interval: interval, | ||
timeout: timeout, | ||
}) | ||
} | ||
|
||
// PollTimingsFromContext will get the previously set poll timing from context, | ||
// or return the defaults if not found. | ||
// - values from context. | ||
// - defaults. | ||
func PollTimingsFromContext(ctx context.Context) (time.Duration, time.Duration) { | ||
if t, ok := ctx.Value(timingsKey{}).(timingsType); ok { | ||
return t.interval, t.timeout | ||
} | ||
panic("no poll timings found in context") | ||
} |