Skip to content

Commit ed72b3d

Browse files
Merge branch 'main' into fix/suggestion_grant
2 parents 5393063 + 9269316 commit ed72b3d

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.699.0](https://github.com/adobe/spacecat-api-service/compare/v1.698.1...v1.699.0) (2026-07-29)
2+
3+
4+
### Features
5+
6+
* **llmo:** include siteId in edge-optimize enabled-marking SQS message ([#2930](https://github.com/adobe/spacecat-api-service/issues/2930)) ([7e89411](https://github.com/adobe/spacecat-api-service/commit/7e89411c4747d7731ae0dc43bde2eefdd6050317))
7+
18
## [1.698.1](https://github.com/adobe/spacecat-api-service/compare/v1.698.0...v1.698.1) (2026-07-28)
29

310

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/spacecat-api-service",
3-
"version": "1.698.1",
3+
"version": "1.699.0",
44
"description": "SpaceCat API Service",
55
"main": "src/index.js",
66
"type": "module",

src/controllers/llmo/llmo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,7 @@ function LlmoController(ctx) {
17441744
try {
17451745
await context.sqs.sendMessage(
17461746
env.IMPORT_WORKER_QUEUE_URL,
1747-
{ type: OPTIMIZE_AT_EDGE_ENABLED_MARKING_TYPE },
1747+
{ type: OPTIMIZE_AT_EDGE_ENABLED_MARKING_TYPE, siteId },
17481748
undefined,
17491749
{ delaySeconds: EDGE_OPTIMIZE_MARKING_DELAY_SECONDS },
17501750
);

test/controllers/llmo/llmo.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5772,7 +5772,7 @@ describe('LlmoController', () => {
57725772
expect(mockConfig.updateEdgeOptimizeConfig.firstCall.args[0]).to.not.have.property('enabled');
57735773
expect(mockContext.sqs.sendMessage).to.have.been.calledWith(
57745774
mockEnv.IMPORT_WORKER_QUEUE_URL,
5775-
{ type: 'optimize-at-edge-enabled-marking' },
5775+
{ type: 'optimize-at-edge-enabled-marking', siteId: TEST_SITE_ID },
57765776
undefined,
57775777
{ delaySeconds: 300 },
57785778
);

0 commit comments

Comments
 (0)