corebasic 1.0.35 → 1.0.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/libs/features.js +1 -1
  2. package/package.json +1 -1
package/libs/features.js CHANGED
@@ -29,7 +29,7 @@ export function start(app, url) {
29
29
 
30
30
  if (feature.api.split(' ')[0].toLowerCase() !== "get") {
31
31
  let topic = feature.topic
32
- Kafka.receive(topic, async (topic, message) => {
32
+ Kafka.receive(topic, `${featureName}.${topic}`, async (topic, message) => {
33
33
 
34
34
  const timer = ms => new Promise(res => setTimeout(res, ms)) // A promise that resolves after "ms" Milliseconds
35
35
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "corebasic",
3
3
  "type": "module",
4
- "version": "1.0.35",
4
+ "version": "1.0.36",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {