[ADF-4351] Change APS2 services url pattern form -service/ to /service/ (#4563)

* [ADF-4351] Change APS2 services url pattern form ` -service/` to  `/service/`

* Changed all query and runtimebundle app name convention.

* Use the correct name of the class

* Skip latest unit test that is failing

* Change the karma

* Fix failing unit test on editTaskCloud
This commit is contained in:
siva kumar
2019-04-08 18:33:53 +05:30
committed by Eugenio Romano
parent a42d58af49
commit 78daf68777
21 changed files with 132 additions and 81 deletions

View File

@@ -34,7 +34,7 @@ by all ADF applications.
The runtime bundle service pod (generated by the default installation) has the name
`rb-[appName]` (usually `rb-my-app`) to begin with. An ADF application requires the runtime
bundle service to be available with the name `[appName]-rb` (usually `my-app-rb`).
bundle service to be available with the name `[appName]/rb` (usually `my-app/rb`).
### How to change the name of the runtime bundle service
@@ -49,7 +49,7 @@ file as shown below:
runtime-bundle:
enabled: true
service:
name: my-app-rb \\ <-- change it here!
name: my-app/rb \\ <-- change it here!
...
```