2019-11-06 00:08:46 UTC - Rodric Rabbah: containers are paused after a 
configurable `grace` period
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1572998926189100
----
2019-11-06 00:08:59 UTC - Rodric Rabbah: they are reclaimed after a `quiet` 
period
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1572998939189400
----
2019-11-06 00:09:06 UTC - Rodric Rabbah: grace is ~50ms
quiet is ~10m
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1572998946189700
----
2019-11-06 00:09:20 UTC - Rodric Rabbah: i think both are configurations that 
you can change from the application conf files
+1 : Ali Tariq, Bill Zong
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1572998960190100
----
2019-11-06 09:21:25 UTC - Bill Zong: I haven’t noticed the `grace` setting. I 
thought the `>= 50ms` latency was made by `docker pause` itself. Thanks for 
pointing it out.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573032085192700
----
2019-11-06 16:16:05 UTC - Matt Rutkowski: Is it possible for committers to 
resolve conflicts on a PR someone else committed (under apache and our repo 
setup)?  If so, can anyone advise/point to the instructions they used?  Hub?  
specifically, I want to fix conflicts on this PR: 
<https://github.com/apache/openwhisk-runtime-java/pull/82> without having to 
bother the submitter which might take time based upon past experience.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573056965195300?thread_ts=1573056965.195300&cid=C3TPCAQG1
----
2019-11-06 16:27:53 UTC - Shazron Abdullah: If the PR submitter checked "allow 
commits by committers" when submitting the PR (checked by default), you can 
just push to their branch directly.

I just use the command line instructions (highlighted in the screenshot) 
without needing an external tool.
thankyou : Matt Rutkowski
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573057673195400?thread_ts=1573056965.195300&cid=C3TPCAQG1
----
2019-11-06 16:30:10 UTC - Shazron Abdullah: I would avoid the "Step 2" which 
merges it to master, and push to their branch
+1 : Matt Rutkowski
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573057810195800?thread_ts=1573056965.195300&cid=C3TPCAQG1
----
2019-11-06 17:11:32 UTC - Rodric Rabbah: i use this script to pull the PR 
locally
```
#!/bin/bash

set -e

PRN=$1
: ${PRN:?"pull request number must be given"}

git fetch upstream "pull/$PRN/head:pr-$PRN"
git checkout "pr-$PRN"
git rebase master
```
+1 : Bill Zong
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573060292196500
----
2019-11-06 17:12:29 UTC - Rodric Rabbah: and this one to push the contributor’s 
branch - (as long as the maintainer is granted permission, as @Shazron Abdullah 
noted)
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573060349197400
----
2019-11-06 17:12:41 UTC - Rodric Rabbah: ```
#!/bin/sh

set -e

REPO=${3:-incubator-openwhisk}
ID=${1%:*}
BR=${1#*:}

git push g...@github.com:$ID/$REPO.git HEAD:$BR $2
```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573060361197700
----
2019-11-06 17:46:59 UTC - Nikhil Pereira: Hi everyone
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062419198100
----
2019-11-06 17:47:30 UTC - Nikhil Pereira: I need help running Openwhisk on mac 
locally on kubernetes
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062450198600
----
2019-11-06 17:48:16 UTC - Nikhil Pereira: I was able to install openwhisk on 
kubernetes docker desktop
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062496199200
----
2019-11-06 17:48:39 UTC - Nikhil Pereira: 
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062519199400
----
2019-11-06 17:49:20 UTC - Nikhil Pereira: but i am getting this error "Unable 
to obtain API build information: Get <https://localhost:31001/api/v1>: 
net/http: TLS handshake timeout"
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062560199900
----
2019-11-06 17:49:28 UTC - Nikhil Pereira: when running wsk commands
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062568200200
----
2019-11-06 17:49:43 UTC - Nikhil Pereira: How do I overcome this?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062583200600
----
2019-11-06 17:51:49 UTC - Nikhil Pereira: kubectl get pods -n openwhisk
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062709200800
----
2019-11-06 17:51:59 UTC - Nikhil Pereira: getting the same error here too
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573062719201100
----
2019-11-06 18:06:41 UTC - Nikhil Pereira: okay I restarted kubernetes
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573063601201400
----
2019-11-06 18:06:53 UTC - Nikhil Pereira: now I am getting error: Unable to 
obtain API build information: The connection failed, or timed out. (HTTP status 
code 502)
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573063613201600
----
2019-11-06 18:44:07 UTC - Markus Thömmes: Heya, do we have any docs on how to 
develop new runtimes?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573065847202000
----
2019-11-06 18:44:57 UTC - Markus Thömmes: nvm, found it :smile:
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573065897202200
----
2019-11-06 18:58:25 UTC - Rodric Rabbah: :yum: whatcha doing?!
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573066705202500
----
2019-11-06 18:58:40 UTC - Rodric Rabbah: hello @Nikhil Pereira welcome to the 
openwhisk community
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573066720202900
----
2019-11-06 18:59:19 UTC - Rodric Rabbah: do you need to run on kubernetes, out 
of curiousity  -the standalone openwhisk stack is much easier to work with
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573066759203700
----
2019-11-06 22:59:29 UTC - Tyson Norris: Am I losing my mind, or does this build 
job constantly fail on `generateSwaggerCodeJava`? ```&gt; Task 
:tests:reportCoverage
&gt; Task :tests:resolveSwaggerTemplate NO-SOURCE
&gt; Task :tests:validateSwaggerJava
&gt; Task :tests:generateSwaggerCodeJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':tests:generateSwaggerCodeJava'.
&gt; Add swagger-codegen-cli to dependencies of the project as follows:
    dependencies {
      swaggerCodegen 'io.swagger:swagger-codegen-cli:x.x.x'
    }
```
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573081169204700
----
2019-11-06 22:59:41 UTC - Tyson Norris: 
<https://travis-ci.org/apache/openwhisk/jobs/608313739>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573081181204900
----
2019-11-06 23:00:33 UTC - Tyson Norris: afaict tests are passing but the jobs 
all fail on swagger :thinking_face:
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1573081233205400
----

Reply via email to