Initialization has failed due to: Error: Could not locate the bindings file. Tried:\n → /nodejsAction/build/node_sqlite3.node\n → /nodejsAction/build/Debug/node_sqlite3.node\n → /nodejsAction/build/Release/node_sqlite3.node\n → /nodejsAction/out/Debug/node_sqlite3.node\n → /nodejsAction/Debug/node_s...
I am running a simple react app from AppBuilder. The project builds and deploys successfully. I have routes within my react app. Now hitting the routes link from my local, the deepdive urls work. For example `https://localhost:9080/faq` this deepdive link works at local. But when deploy onto AppBui...
I am running a job on AppBuilder project. I created an action; set the web='no'; created trigger and rule, so every 5 mins action invokes successfully. I deployed the same action into 2 workspaces. I observe that one of workspace alone runs multiple activations, while other workspace runs correctly...
My use case follows an idea I posted https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager-ideas/enhance-assetcompute-microservice-to-accept-alttext/idi-p/705880 Basically I am receiving asset creation events from Workfront and am creating assets into AEM using a runtime action. ...
I wrote a simple webaction and deployed to my workspace import { setGlobals } from "./common.mjs"; function main(params) { setGlobals(params); return { result: "Trigger runtime action successfully" }; } const _main = main; export { _main as main }; When I call the action from Postman, I only r...
When we subscribe to event journal using getEventsObservableFromJournal, does the subscriber WAIT for each event callback to complete before switching to next event? Say if 500 events are queued into the journal, and I invoke getEventsObservableFromJournal.Do ALL events get consumed parallel and 500...
Hi,I created a runtime web-action that ll fetch events from journal api like thisconst journalObservable = await client.getEventsObservableFromJournal(baseURL, journalOptions); journalObservable.subscribe( x => logger.log('onNext: ' + JSON.stringify(x)), // any action onNext event e => log...
I am writing a runtime webaction that ingests assets into AEM and updates content fragments. So I prepared a mock.json with 5000 asset inputs, call the webaction from Postman. This triggers async function that ll read mock.json, and executes for each asset. I was able to test successfully for ~2000...