You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by gi...@git.apache.org on 2017/08/28 23:15:29 UTC

[GitHub] pritidesai commented on issue #398: Concurrent issues when running integration tests accessing the same resources

pritidesai commented on issue #398: Concurrent issues when running integration tests accessing the same resources
URL: https://github.com/apache/incubator-openwhisk-wskdeploy/issues/398#issuecomment-325509077
 
 
   Its the result of having copy/pasted deployment file from the integration test which was added in the beginning. This is the deployment file in **flagstests** with application name `wskdeploy-samples` and packaging name `triggerrule`: 
   
   https://github.com/apache/incubator-openwhisk-wskdeploy/blob/master/tests/src/integration/flagstests/deployment.yml
   
   ```
   application:
     name: wskdeploy-samples
   
     package:
       triggerrule:
         name: helloworld
         namespace: guest
         actions:
           greeting:
             inputs:
               name: Bernie
               place: Vermont
   ```
   
   Depoyment file in **triggerrule:**
   
   https://github.com/apache/incubator-openwhisk-wskdeploy/blob/master/tests/src/integration/triggerrule/deployment.yml
   
   ```
   application:
     name: wskdeploy-samples
   
     package:
       triggerrule:
         name: helloworld
         namespace: guest
         actions:
           greeting:
             inputs:
               name: Bernie
               place: Vermont
   ```
   
   Deployment file in **webaction**:
   
   https://github.com/apache/incubator-openwhisk-wskdeploy/blob/master/tests/src/integration/webaction/deployment.yml
   
   ```
   application:
     name: wskdeploy-samples
   
     package:
       triggerrule:
         name: helloworld
         namespace: guest
         actions:
           greeting:
             inputs:
               name: Bernie
               place: Vermont
   ```
   
   Deployment file in **zipaction**:
   
   https://github.com/apache/incubator-openwhisk-wskdeploy/blob/master/tests/src/integration/zipaction/deployment.yml
   
   ```
   application:
     name: wskdeploy-samples
     package:
       triggerrule:
         name: cat
         namespace: guest
         actions:
           greeting:
             inputs:
               name: Bernie
               place: Vermont
   ```
   
   We have four integration tests which have deployment files and the content is same for all (package name **triggerrule** and application name **wskdeploy-samples**)
 
----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services