WSLink launcher is not deleting services. There is bug in code in following file
web_app.add_routes(
[
aiohttp_web.post(endpoint, launcher_resource.handle_post),
aiohttp_web.get(endpoint+'{id}', launcher_resource.handle_get),
aiohttp_web.delete(endpoint+'{id}', launcher_resource.handle_delete),
]
)
+‘{id}’ part is missing in get and delete. After the above change service deletion is working fine. Kindly look in to it.