This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade to latest dependencies (#1423)
bumping knative.dev/eventing d978f3c...62e797b: > 62e797b [main] Upgrade to latest dependencies (# 7428) bumping knative.dev/reconciler-test 212f3db...d2429fb: > d2429fb use context poll interval/timeout in DeleteResources (# 626) > 04b80d7 upgrade to latest dependencies (# 627) bumping knative.dev/pkg acf0a2d...5c9b7a8: > 5c9b7a8 upgrade to latest dependencies (# 2887) Signed-off-by: Knative Automation <[email protected]>
- Loading branch information
1 parent
b704a1c
commit 942cd7c
Showing
6 changed files
with
74 additions
and
34 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 | ||
} | ||
return DefaultPollInterval, DefaultPollTimeout | ||
} |
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