SEBA-456 Fix exampleservice directory and kafka example

Change-Id: Ifb6d4823bef7e9150577937896309e590dea5b06
diff --git a/VERSION b/VERSION
index 512a1fa..61a6ba1 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.1.9
+1.1.10-dev
diff --git a/docs/simple-example-service.md b/docs/simple-example-service.md
index c933724..a1abd1a 100644
--- a/docs/simple-example-service.md
+++ b/docs/simple-example-service.md
@@ -91,7 +91,7 @@
 If you've already checked out the CORD code, for example using repo, then make note the path to the `simpleexampleservice` code as we'll be using it in a few minutes:
 
 ```bash
-SIMPLEEXAMPLESERVICE_PATH=~/cord/orchestration/xos_services/simpleexampleservice
+SIMPLEEXAMPLESERVICE_PATH=~/cord/orchestration/xos-services/simpleexampleservice
 ```
 
 Otherwise, check out the simpleexampleservice repository now:
@@ -161,9 +161,11 @@
 
 ```python
 import json
-from kafka import KafkaProducer
-producer = KafkaProducer(bootstrap_servers="cord-kafka")
-producer.send("SimpleExampleEvent", json.dumps({"service_instance": "My Simple Example Service Instance", "tenant_message": "Earth"}))
+from confluent_kafka import Producer
+producer_config = {"bootstrap.servers": "cord-kafka"}
+producer = Producer(**producer_config)
+event = {"service_instance": "My Simple Example Service Instance", "tenant_message": "Earth"}
+producer.produce("SimpleExampleEvent", json.dumps(event), key=event["service_instance"])
 producer.flush()
 ```