-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delay when to shutdown the mtping adapter (#3831)
* delay when to shutdown the mtping adapter * make shutdown delay configurable * only delay the signal context
- Loading branch information
1 parent
e8307cb
commit 52a210f
Showing
11 changed files
with
150 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
Copyright 2020 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 mtping | ||
|
||
import ( | ||
"context" | ||
"time" | ||
) | ||
|
||
// NewDelayingContext returns a new context delaying the | ||
// cancellation of the given context. | ||
func NewDelayingContext(ctx context.Context, afterSecond int) context.Context { | ||
delayCtx, cancel := context.WithCancel(context.Background()) | ||
go func() { | ||
<-ctx.Done() | ||
|
||
s := time.Now().Second() | ||
if s > afterSecond { | ||
// Make sure to pass the minute by adding 1 second. | ||
time.Sleep(time.Second * time.Duration(60-s+1)) | ||
} | ||
|
||
cancel() | ||
}() | ||
return delayCtx | ||
} |
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,57 @@ | ||
/* | ||
Copyright 2020 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 mtping | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"testing" | ||
"time" | ||
) | ||
|
||
func TestWithDelayedCancellation(t *testing.T) { | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
|
||
delayedCtx := NewDelayingContext(ctx, 55) | ||
go func() { | ||
<-delayedCtx.Done() | ||
}() | ||
|
||
fmt.Println(time.Now()) | ||
waitForSecond(56) | ||
cancel() | ||
|
||
<-delayedCtx.Done() | ||
|
||
fmt.Println(time.Now()) | ||
csecond := time.Now().Second() | ||
if csecond > 55 { | ||
t.Error("expected current second to be less than 55") | ||
} | ||
} | ||
|
||
func waitForSecond(second int) { | ||
csecond := time.Now().Second() | ||
if csecond == second { | ||
return | ||
} | ||
if csecond > second { | ||
time.Sleep(time.Duration(second+60-csecond) * time.Second) | ||
} else { | ||
time.Sleep(time.Duration(second-csecond) * time.Second) | ||
} | ||
} |
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
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