pepr 0.1.33 → 0.1.34
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.
- package/dist/package.json +1 -1
- package/dist/src/lib/processor.js +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -30,7 +30,7 @@ function processor(config, capabilities, req) {
|
|
|
30
30
|
// Add annotations to the request to indicate that the capability started processing
|
|
31
31
|
// this will allow tracking of failed mutations that were permitted to continue
|
|
32
32
|
const { metadata } = wrapped.Raw;
|
|
33
|
-
const identifier =
|
|
33
|
+
const identifier = `${config.uuid}.pepr.dev/${name}`;
|
|
34
34
|
metadata.annotations = metadata.annotations || {};
|
|
35
35
|
metadata.annotations[identifier] = "started";
|
|
36
36
|
try {
|