2019-08-02 03:31:50 UTC - Yuvraj Singh: Hi
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564716710352000
----
2019-08-02 03:32:55 UTC - Yuvraj Singh: I am trying to setup and invoke the 
default function but its giving error `The SSH command responded with a 
non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.`
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564716775352900
----
2019-08-02 03:33:09 UTC - Yuvraj Singh: can somebody help me out ?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564716789353200
----
2019-08-02 03:34:10 UTC - Yuvraj Singh: I even tried though docker-compose but 
that too gave an error ``fatal: [ansible]: FAILED! => {"changed": false, 
"content": "", "failed": true, "msg": "Status code was not [200, 404]: Request 
failed: <urlopen error [Errno 113] No route to host>", "redirected": 
false, "status": -1, "url": "<http://db:5984/local_subjects>"}

Status code was not [200, 404]: Request failed: &lt;urlopen error [Errno 113]
No route to host&gt;
``
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564716850354000?thread_ts=1564716850.354000&cid=C3TPCAQG1
----
2019-08-02 07:30:08 UTC - Jiang PengCheng: hello guys, recently I did some 
custom changes to the `CommonLoadBalancer.scala`, and found a strange 
phenomenon that sometimes the `activationSlots` cannot remove the entry from it 
under heavy load(about 10000 tps), so I added below codes to debug:

```
    activationSlots.remove(aid) match {
      case Some(entry) =&gt;
        // below two lines are added by me
        if (activationSlots.contains(aid))
          logging.warn(this, s"failed to remove entry $aid from activation 
slots")(tid)
```

and above warn log appeared several times, does anyone have any idea about this?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564731008358600
----
2019-08-02 08:09:38 UTC - chetanm: That would be strange. Are you running 
recent code or its older version
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564733378359200
----
2019-08-02 08:09:52 UTC - chetanm: @Sven Lange-Last would have better insights 
here
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564733392359600
----
2019-08-02 08:10:59 UTC - chetanm: Most likely some issue with CouchDB
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564733459359700?thread_ts=1564716850.354000&cid=C3TPCAQG1
----
2019-08-02 08:11:24 UTC - chetanm: If the CoucDB container is running check its 
log if they indicate some stuff
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564733484359900?thread_ts=1564716850.354000&cid=C3TPCAQG1
----
2019-08-02 08:16:40 UTC - Markus Thömmes: @Jiang PengCheng does this comment 
explain the situation? 
<https://github.com/apache/incubator-openwhisk/blob/ce45d54c824ef6c3e5d98ce0b220b924c81e688b/core/controller/src/main/scala/org/apache/openwhisk/core/loadBalancer/CommonLoadBalancer.scala#L138-L146>
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564733800360400
----
2019-08-02 08:40:00 UTC - Jiang PengCheng: @chetanm I used the recent code
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564735200361000
----
2019-08-02 08:40:40 UTC - Jiang PengCheng: @Markus Thömmes seems not, the 
problem is that after `activationSlots.remove(aid)`, the `aid` is still in the 
`activationSlots`
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564735240361800
----
2019-08-02 08:42:41 UTC - Markus Thömmes: eh... that sounds weird
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564735361362000
----
2019-08-02 08:44:10 UTC - Markus Thömmes: I'd bet it's eventual consistency of 
the TrieMap structure. Can you try if a `get` works as well?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564735450362500
----
2019-08-02 08:46:28 UTC - Jiang PengCheng: ok, I will try
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564735588362700
----
2019-08-02 10:11:32 UTC - Bruno Girin: Hi all, I have an action that used to 
work fine until today: it now tells me that it can't find `node-fetch`. Has 
anything changed in the nodejs 8 or nodejs 10 runtimes?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564740692365100
----
2019-08-02 10:11:56 UTC - Bruno Girin: And if yes, what should I use instead of 
`node-fetch`?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564740716365500
----
2019-08-02 10:14:56 UTC - Zega: you probably need to install node-fecth module
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564740896366300
----
2019-08-02 10:16:07 UTC - Bruno Girin: @Zega I tried to do that by re-factoring 
my action into an `index.js` with a `package.json` file in a zip file but this 
doesn't work either.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564740967367600
----
2019-08-02 10:23:49 UTC - Zega: you need to literally install it
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564741429368000
----
2019-08-02 10:24:07 UTC - Zega: meaning run npm install node-fetch
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564741447368400
----
2019-08-02 10:24:39 UTC - Zega: then you’re going to package node_modules again 
in your zip
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564741479369000
----
2019-08-02 10:33:50 UTC - Bruno Girin: @Zega yes found that, thanks. I was 
missing the `node_modules` because my zip command was missing a `-r` flag, 
thanks for the help!
call_me_hand : Zega
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564742030369800
----
2019-08-02 19:24:30 UTC - Pepi Paraskevoulakou: hello i am trying to invoke a 
simple hello world function in python but the result is this:
(Also i tried the same function with js and no problem)
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564773870370800
----
2019-08-02 19:53:55 UTC - Pepi Paraskevoulakou: tried with -t -r nothing …. is 
there any problem with python?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564775635372700
----
2019-08-02 20:24:31 UTC - Rodric Rabbah: That message means the action took 
longer than 60s. You can do 

wsk -i activation get id 

To see the result 

https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1564777471373800
----

Reply via email to