[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
SUCCESS_EXIT, + cliCfgFile: Option[String] = None)(implicit wp: WskProps): RestResult = { +val parms = Map[String, JsValue]() ++ { Map("__ow_user" -> wp.namespace.toJson) } ++ { + Map("basepath" -> basepathOrApiName.toJson) +} ++ { +

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
annotations: Map[String, JsValue] = Map(), +expectedExitCode: Int = OK.intValue)(implicit wp: WskProps): RestResult = { +val params = convertMapIntoKeyValue(parameters) +val annos = convertMapIntoKeyValue(annotations) + +val (ns, packageName) = this.getNa

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
r.statusCode.intValue shouldBe expectedExitCode +} +r + } + + /** + * Looks up namespace for whisk props. + * + * @param wskprops instance of WskProps with an auth key to lookup + * @return namespace as string + */ + override def whois()(implicit wskprops: WskProps): St

[GitHub] csantanapr closed pull request #2845: Properly handle API GW errors during GET requests

2017-10-10 Thread git
csantanapr closed pull request #2845: Properly handle API GW errors during GET requests URL: https://github.com/apache/incubator-openwhisk/pull/2845 This is an automated message from the Apache Git Service. To respond to

[GitHub] ddragosd commented on issue #2695: Logstore SPI

2017-10-10 Thread git
from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
resp = getWhiskEntity(entPath)(wp).futureValue +val r = new RestResult(resp.status, getRespData(resp)) +if (expectedExitCode != DONTCARE_EXIT) Review comment: Looks like the check for expectedExitCode is repeated many times. Should construct a function that does the check instead. --

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
s.size == 0) postEntity(path).futureValue else postEntity(path, params.toJson.toString()).futureValue +new RestResult(resp.status.intValue, getRespData(resp)) + } +} + +class WskRestRule +extends RunWskRestCmd +with ListOrGetFromCollectionRest +with DeleteFromCollectionRest +with

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
ctActivationIdFromInvoke(result: RestResult): Option[String] = { +Try { + var activationID = +if ((result.statusCode == OK) || (result.statusCode == Accepted)) result.getField("activationId") else "" + activationID Review comment: This line isn't ne

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
k here like Wsk.scala does? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
he result and not assume it is >= N. + * + * @param N the number of activations desired + * @param entity the name of the entity to filter from activation list + * @param limit the maximum number of entities to list (if entity name is not unique use Some(0)) + * @param since (optional) only th

[GitHub] dubeejw commented on a change in pull request #2589: Add the fundamental framework of REST invocation for test cases

2017-10-10 Thread git
onventions.html for naming conventions. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please

[GitHub] mdeuser opened a new pull request #2845: Properly handle API GW errors during GET requests

2017-10-10 Thread git
mdeuser opened a new pull request #2845: Properly handle API GW errors during GET requests URL: https://github.com/apache/incubator-openwhisk/pull/2845 This is an automated message from the Apache Git Service. To respond

[GitHub] csantanapr closed issue #224: Github triggers is hardcoded to use whisk api on host openwhisk.ng.bluemix.net

2017-10-09 Thread git
Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] csantanapr closed pull request #244: using existing __OW_API_HOST for host name

2017-10-09 Thread git
csantanapr closed pull request #244: using existing __OW_API_HOST for host name URL: https://github.com/apache/incubator-openwhisk-catalog/pull/244 This is an automated message from the Apache Git Service. To respond to the

[GitHub] pritidesai opened a new pull request #602: Adding manifest for incubator-openwhisk-githubslackbot

2017-10-09 Thread git
pritidesai opened a new pull request #602: Adding manifest for incubator-openwhisk-githubslackbot URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/602 This is an automated message from the Apache Git

[GitHub] pritidesai commented on issue #601: Add Json support for Input parameters

2017-10-09 Thread git
] Parameter.Value: [] Parameter.Default: [] EXIT: Parameter type=[string] value=[] Deployment completed successfully. ``` This is an automated message from the Apache Git Service. To respond to the

[GitHub] pritidesai commented on issue #601: Add Json support for Input parameters

2017-10-09 Thread git
: ... ``` This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact

[GitHub] tylerhawkes opened a new issue #2844: Package export/import

2017-10-09 Thread git
. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us

[GitHub] rabbah commented on issue #2841: Feature Request: Add support for `--result` flag to `activations get`

2017-10-09 Thread git
` and `--logs` on get, or top level commands as today. the logs command is worth keeping in my view, since the log interface may change based on on going discussions on the dev list. This is an automated message from the Apach

[GitHub] Juice10 commented on issue #2841: Feature Request: Add support for `--result` flag to `activations get`

2017-10-09 Thread git
ag version for CLI consistency reasons. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this servi

[GitHub] csantanapr opened a new pull request #2843: Move python runtime into it's own repo

2017-10-09 Thread git
csantanapr opened a new pull request #2843: Move python runtime into it's own repo URL: https://github.com/apache/incubator-openwhisk/pull/2843 This is an automated message from the Apache Git Service. To respond t

[GitHub] yunspace commented on issue #2842: Remove empty continuation line to avoid error

2017-10-09 Thread git
Git commit: 8784753 Built:Tue Aug 29 17:42:53 2017 ll docker OS/Arch: linux/amd64 n/ Server

[GitHub] yunspace opened a new pull request #2842: Remove empty continuation line to avoid error

2017-10-09 Thread git
a future release. ``` This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] dubeejw commented on issue #2841: Feature Request: Add support for `--result` flag to `activations get`

2017-10-09 Thread git
uot;: "bar" } ``` This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@inf

[GitHub] rabbah commented on issue #2841: Feature Request: Add support for `--result` flag to `activations get`

2017-10-09 Thread git
work? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] Juice10 opened a new issue #2841: Feature Request: Add support for `--result` flag to `activations get`

2017-10-09 Thread git
ions get --last --result unknown flag: --result ``` ---- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infras

[GitHub] crow15 opened a new issue #2840: Can't natively build OpenWhisk on Mac with Java 9

2017-10-09 Thread git
.base/java.lang.Thread.run(Thread.java:844) FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':common:scala:compileScala'. > org.gradle.internal.serialize.PlaceholderException (no error message) * Try: Run with --stacktrace option to get the s

[GitHub] crow15 opened a new issue #250: Bad link: Events/Resources/Tutorials

2017-10-09 Thread git
-/opennal-resources#workshops This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please

[GitHub] mrutkows opened a new pull request #601: Add Json support for Input parameters

2017-10-08 Thread git
mrutkows opened a new pull request #601: Add Json support for Input parameters URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/601 This is an automated message from the Apache Git Service. To respond to

[GitHub] rabbah opened a new issue #75: support optional leading slash in fully qualified names

2017-10-08 Thread git
for reference, see: https://github.com/apache/incubator-openwhisk/issues/2328 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific co

[GitHub] tleyden opened a new issue #2839: Return peak memory usage in activation response JSON

2017-10-08 Thread git
hould be stored in the cgroup eg `/sys/fs/cgroup/memory/docker//memory.max_usage_in_bytes` This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the

[GitHub] ddragosd commented on issue #2815: WIP: adding api host param

2017-10-06 Thread git
? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards

[GitHub] dubeejw commented on a change in pull request #2835: Move batching to CouchDbRestStore

2017-10-06 Thread git
's set to 500 here. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact

[GitHub] dubeejw commented on a change in pull request #2835: Move batching to CouchDbRestStore

2017-10-06 Thread git
config: WhiskConfig)(implicit system: ActorSystem, logging: Logging, materializer: ActorMaterializer) = Review comment: Why not batch `WhiskEntityStore` as well? This is an automated message from the Apache Git Service. To respond

[GitHub] ddragosd commented on a change in pull request #2828: option to use docker pause/unpause instead of docker-runc pause/unpause

2017-10-06 Thread git
s to other container factories I believe. I just thought we can keep the PR smaller, but if it makes more sense to be explicit with this flag, ? This is an automated message from the Apache Git Service. To respond to the messa

[GitHub] houshengbo closed issue #597: On tagged releases of wskdeploy, publish new docker image to openwhisk/wskdeploy

2017-10-06 Thread git
Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] houshengbo commented on issue #597: On tagged releases of wskdeploy, publish new docker image to openwhisk/wskdeploy

2017-10-06 Thread git
-wskdeploy/pull/596. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact

[GitHub] mhamann closed pull request #258: Allow periods in managed url paths

2017-10-06 Thread git
mhamann closed pull request #258: Allow periods in managed url paths URL: https://github.com/apache/incubator-openwhisk-apigateway/pull/258 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] beemarie commented on issue #597: On tagged releases of wskdeploy, publish new docker image to openwhisk/wskdeploy

2017-10-06 Thread git
nd it @mrutkows ? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastru

[GitHub] beemarie commented on issue #597: On tagged releases of wskdeploy, publish new docker image to openwhisk/wskdeploy

2017-10-06 Thread git
you resend it @mrutkows ? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please co

[GitHub] alexsong93 opened a new pull request #258: Allow periods in managed url paths

2017-10-06 Thread git
alexsong93 opened a new pull request #258: Allow periods in managed url paths URL: https://github.com/apache/incubator-openwhisk-apigateway/pull/258 @mhamann This is an automated message from the Apache Git Service. To

[GitHub] houshengbo closed pull request #596: publish to docker

2017-10-06 Thread git
houshengbo closed pull request #596: publish to docker URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/596 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] dgrove-oss commented on issue #2689: first stage of support for dynamic invoker id assignment

2017-10-06 Thread git
? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With

[GitHub] rabbah commented on a change in pull request #2828: option to use docker pause/unpause instead of docker-runc pause/unpause

2017-10-06 Thread git
the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] dgrove-oss commented on a change in pull request #2828: option to use docker pause/unpause instead of docker-runc pause/unpause

2017-10-06 Thread git
made it an implicit and @rabbah requested that it not be an implicit, so I reworked. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specif

[GitHub] dubeejw commented on issue #2832: Do not cache invalidate when adding a DB attachment

2017-10-06 Thread git
Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] cbickel opened a new pull request #2838: Add check to controller and invoker that required databases exist

2017-10-06 Thread git
exist. Otherwise the deployment will fail. PG3#1170 is running. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment

[GitHub] ddragosd commented on a change in pull request #2821: Move java runtime into it's own repo

2017-10-06 Thread git
ockerfile /javaAction/build - -RUN cd /javaAction; ./gradlew oneJar - -RUN rm -rf /javaAction/src - -CMD ["java", "-jar", "/javaAction/build/libs/javaAction-all.jar"] +FROM openwhisk/java8action:1.0.0 Review comment: ? -

[GitHub] ddragosd commented on issue #2796: Check if runc exists before using it ( WIP to fix #2788 )

2017-10-06 Thread git
is not straight forward. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact

[GitHub] ddragosd closed pull request #2796: Check if runc exists before using it ( WIP to fix #2788 )

2017-10-06 Thread git
ddragosd closed pull request #2796: Check if runc exists before using it ( WIP to fix #2788 ) URL: https://github.com/apache/incubator-openwhisk/pull/2796 This is an automated message from the Apache Git Service. To

[GitHub] ddragosd commented on a change in pull request #2828: option to use docker pause/unpause instead of docker-runc pause/unpause

2017-10-06 Thread git
ng `config` an implicit param to avoid method signature changes downstream ? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comm

[GitHub] cbickel commented on a change in pull request #2835: Move batching to CouchDbRestStore

2017-10-06 Thread git
. This person suggested a batch size of 500. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this se

[GitHub] cbickel commented on a change in pull request #2835: Move batching to CouchDbRestStore

2017-10-05 Thread git
y activations. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apac

[GitHub] cbickel commented on a change in pull request #2835: Move batching to CouchDbRestStore

2017-10-05 Thread git
ict" => Left(DocumentConflictException("conflict on 'bulk_put'")) Review comment: No, all other entries will have no errors. So there is no need to retry, if there is only one document with a conflict. ---- T

[GitHub] dubeejw commented on issue #2832: Do not cache invalidate when adding a DB attachment

2017-10-05 Thread git
Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] rabbah commented on issue #2836: [java runtime] Use Class Data Sharing

2017-10-05 Thread git
csantanapr. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastruct

[GitHub] rabbah closed pull request #2831: Make console tests more robust

2017-10-05 Thread git
rabbah closed pull request #2831: Make console tests more robust URL: https://github.com/apache/incubator-openwhisk/pull/2831 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] alexkli opened a new issue #2837: [cli] Support reading param.json from stdin

2017-10-05 Thread git
`filename == "-"`. One probably has to check if that is ok for all other `readFile()` usages, or if that should be a special option reserved for `-P --param-file` only. This is an automated message from the Apache Git Se

[GitHub] mrutkows closed pull request #599: fixing dependenct package name collision

2017-10-05 Thread git
mrutkows closed pull request #599: fixing dependenct package name collision URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/599 This is an automated message from the Apache Git Service. To respond to the

[GitHub] mrutkows closed pull request #600: disable integration test

2017-10-05 Thread git
mrutkows closed pull request #600: disable integration test URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/600 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] pritidesai opened a new pull request #600: disable integration test

2017-10-05 Thread git
an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] beemarie commented on a change in pull request #596: WIP: publish to docker

2017-10-05 Thread git
is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] pritidesai opened a new pull request #599: fixing dependenct package name collision

2017-10-05 Thread git
tests. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us

[GitHub] beemarie commented on a change in pull request #596: WIP: publish to docker

2017-10-05 Thread git
comment: yes, we're building on top of this dockerfile to run the package action. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go t

[GitHub] mrutkows closed pull request #598: fixing owbp package name collision

2017-10-05 Thread git
mrutkows closed pull request #598: fixing owbp package name collision URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/598 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] houshengbo commented on a change in pull request #596: WIP: publish to docker

2017-10-05 Thread git
Review comment: Do we only expect nodejs? This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service

[GitHub] houshengbo commented on a change in pull request #596: WIP: publish to docker

2017-10-05 Thread git
pache wskdeploy ${TRAVIS_TAG}" on: tags: true repo: apache/incubator-openwhisk-wskdeploy condition: "$DEPLOY_BUILD_READY = true" This is an automated message from the Apache Git Service. To respond to

[GitHub] houshengbo commented on a change in pull request #596: WIP: publish to docker

2017-10-05 Thread git
pache wskdeploy ${TRAVIS_TAG}" on: tags: true repo: apache/incubator-openwhisk-wskdeploy condition: "$DEPLOY_BUILD_READY = true" This is an automated message from the Apache Git Service. To respond to

[GitHub] pritidesai opened a new pull request #598: fixing owbp package name collision

2017-10-05 Thread git
pritidesai opened a new pull request #598: fixing owbp package name collision URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/598 This is an automated message from the Apache Git Service. To respond to the

[GitHub] tysonnorris commented on a change in pull request #2833: MesosContainerFactory

2017-10-05 Thread git
iew comment: Yes, this is a stopgap until LogStore is available; Currently mesos integration provides no isolation of two subjects logs. In general devs should not even have access to the mesos UI, (or the logs of other subjects' actions). --

[GitHub] tysonnorris commented on a change in pull request #2833: MesosContainerFactory

2017-10-05 Thread git
will be added to mesos-actor as well. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, p

[GitHub] tysonnorris commented on a change in pull request #2833: MesosContainerFactory

2017-10-05 Thread git
config via akka This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastruct

[GitHub] tysonnorris commented on a change in pull request #2833: MesosContainerFactory

2017-10-05 Thread git
' Review comment: yes, apache This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@inf

[GitHub] mrutkows closed pull request #595: temp fix for trigger and rule overlapping

2017-10-05 Thread git
mrutkows closed pull request #595: temp fix for trigger and rule overlapping URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/595 This is an automated message from the Apache Git Service. To respond to the

[GitHub] beemarie commented on issue #596: publish to docker

2017-10-05 Thread git
beemarie commented on issue #596: publish to docker URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/596#issuecomment-334582503 Closes #597 This is an automated message from the Apache Git Service. To

[GitHub] beemarie opened a new issue #597: On tagged releases of wskdeploy, publish new docker image to openwhisk/wskdeploy

2017-10-05 Thread git
. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us

[GitHub] markusthoemmes commented on a change in pull request #2835: Move batching to CouchDbRestStore

2017-10-05 Thread git
max-open-requests") / 2 Review comment: To prevent fights of other put/reads vs. activation puts. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL a

[GitHub] markusthoemmes commented on a change in pull request #2835: Move batching to CouchDbRestStore

2017-10-05 Thread git
ot;conflict" => Left(DocumentConflictException("conflict on 'bulk_put'")) Review comment: Nope, it's only a specific entity that fails. Behavior then is just like with any single request today. This

[GitHub] beemarie opened a new pull request #596: WIP: publish to docker

2017-10-05 Thread git
beemarie opened a new pull request #596: WIP: publish to docker URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/596 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] alexkli commented on issue #2836: [java runtime] Use Class Data Sharing

2017-10-05 Thread git
rk code](https://github.com/apache/incubator-openwhisk/tree/c036e0d1ee0be312dc5cc43cb2263ab3f0073b87/core/javaAction/proxy/src/main/java/openwhisk/java/action). This is an automated message from the Apache Git Service. To respond to the mess

[GitHub] dgrove-oss commented on issue #2836: [java runtime] Use Class Data Sharing

2017-10-05 Thread git
action). This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at

[GitHub] houshengbo opened a new pull request #110: Sync openwhisk

2017-10-05 Thread git
houshengbo opened a new pull request #110: Sync openwhisk URL: https://github.com/apache/incubator-openwhisk-cli/pull/110 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] alexkli opened a new issue #2836: [java runtime] Use Class Data Sharing

2017-10-05 Thread git
at action specific pre-compilation up front, and that might require to embed it in the docker image IIUC, which in turn would require building it dynamically from OW, which sounds complex. This is an automated message from the Apache Gi

[GitHub] dubeejw commented on issue #2544: Allow CLI to Save Code from Action

2017-10-05 Thread git
is is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] dubeejw commented on issue #2544: Allow CLI to Save Code from Action

2017-10-05 Thread git
dubeejw commented on issue #2544: Allow CLI to Save Code from Action URL: https://github.com/apache/incubator-openwhisk/pull/2544#issuecomment-334555618 PG3 1168 ? This is an automated message from the Apache Git Service

[GitHub] dubeejw commented on issue #2544: Allow CLI to Save Code from Action

2017-10-05 Thread git
dubeejw commented on issue #2544: Allow CLI to Save Code from Action URL: https://github.com/apache/incubator-openwhisk/pull/2544#issuecomment-334479379 PG3 1167 ? This is an automated message from the Apache Git Service

[GitHub] pritidesai opened a new pull request #595: temp fix for trigger and rule overlapping

2017-10-05 Thread git
. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us

[GitHub] mrutkows closed pull request #594: adding integration testing back

2017-10-05 Thread git
mrutkows closed pull request #594: adding integration testing back URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/594 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] mrutkows commented on issue #578: Trigger feed Update and Locking Creation/Deletion of OpenWhisk entities - WIP

2017-10-05 Thread git
! This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] mrutkows closed pull request #593: Use "YAML: Parsing errors:" as the header for parsing erros

2017-10-05 Thread git
mrutkows closed pull request #593: Use "YAML: Parsing errors:" as the header for parsing erros URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/593 This is an automated message from the Apache G

[GitHub] mrutkows closed issue #506: Change term "unmarshal errors" on Error output use 'parser errors' and clean up

2017-10-05 Thread git
ted message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] pritidesai closed pull request #578: Trigger feed Update and Locking Creation/Deletion of OpenWhisk entities - WIP

2017-10-05 Thread git
Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] pritidesai commented on issue #578: Trigger feed Update and Locking Creation/Deletion of OpenWhisk entities - WIP

2017-10-05 Thread git
issue #574, I have created separate PR for that, closing this one. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For qu

[GitHub] pritidesai opened a new pull request #594: adding integration testing back

2017-10-05 Thread git
only verify it by merging this PR. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please

[GitHub] houshengbo closed pull request #591: Programming Guide - part11 - sequence example

2017-10-05 Thread git
houshengbo closed pull request #591: Programming Guide - part11 - sequence example URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/591 This is an automated message from the Apache Git Service. To respond

[GitHub] houshengbo opened a new pull request #593: Use "YAML: Parsing errors:" as the header for parsing erros

2017-10-05 Thread git
e from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] houshengbo commented on issue #506: Change term "unmarshal errors" on Error output use 'parser errors' and clean up

2017-10-05 Thread git
not found in struct parsers.Package are coming from the error raised by the yaml library. We are unable to specify key name and package name on a more granular level. This is an automated message from the Apache Git Service. To re

[GitHub] mrutkows closed issue #480: WIP : A trigger feed is only permitted when the trigger is created (Priti)

2017-10-05 Thread git
Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services

[GitHub] mrutkows closed pull request #590: support trigger feed update

2017-10-05 Thread git
mrutkows closed pull request #590: support trigger feed update URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/590 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] dubeejw commented on issue #2544: Allow CLI to Save Code from Action

2017-10-05 Thread git
dubeejw commented on issue #2544: Allow CLI to Save Code from Action URL: https://github.com/apache/incubator-openwhisk/pull/2544#issuecomment-334479379 PG3 1167 ? This is an automated message from the Apache Git Service

<    1   2   3   4   5   6   7   8   9   10   >