Skip to content
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

deprecate nodejs:10 kind #5112

Merged
merged 3 commits into from
May 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/files/runtimes.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"name": "action-nodejs-v10",
"tag": "nightly"
},
"deprecated": false,
"deprecated": true,
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
Expand Down
4 changes: 2 additions & 2 deletions tests/src/test/scala/common/WskTestHelpers.scala
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ trait WskTestHelpers extends Matchers {
run: RunResult,
initialWait: Duration = 1.second,
pollPeriod: Duration = 1.second,
totalWait: Duration = 60.seconds)(check: ActivationResult => Unit)(implicit wskprops: WskProps): Unit = {
totalWait: Duration = 120.seconds)(check: ActivationResult => Unit)(implicit wskprops: WskProps): Unit = {
val activationId = wsk.extractActivationId(run)

withClue(s"did not find an activation id in '$run'") {
Expand Down Expand Up @@ -275,7 +275,7 @@ trait WskTestHelpers extends Matchers {
}
def withActivation(wsk: ActivationOperations, activationId: String)(check: ActivationResult => Unit)(
implicit wskprops: WskProps): Unit = {
withActivation(wsk, activationId, 1.second, 1.second, 60.seconds)(check)
withActivation(wsk, activationId, 1.second, 1.second, 120.seconds)(check)
}

/**
Expand Down
1 change: 1 addition & 0 deletions tools/travis/runStandaloneTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ kubectl config set-context --current --namespace=default
# This is required because it is timed out to pull the image during the test.
docker pull openwhisk/action-nodejs-v14:nightly
docker pull openwhisk/dockerskeleton:nightly
docker pull openwhisk/example:nightly
docker pull openwhisk/apigateway:0.11.0

cd $ROOTDIR
Expand Down