Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

keilorblend360
keilorblend360
Offline

Badges

Badges
7

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts

Posts
9

Discussions

Discussions
0

Questions

Questions
9

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by keilorblend360
Customize the badges you want to showcase on your profile
Re: Cron-style Alarm Trigger - Adobe Developer Runtime 05-11-2020
Also updating a cron trigger never works. I updated a cron trigger yesterday from 2:03 to 2:30(yay typos) and the action still ran at 2:03.

Views

616

Likes

0

Replies

0
Re: Cron-style Alarm Trigger - Adobe Developer Runtime 05-11-2020
Yeah that kind of stinks. We recently had to adjust all of our action CRON triggers for daylight savings. Every time-based trigger shifted an hour ahead. Anything running at 5am, ran at 4am, etc.

Views

618

Likes

0

Replies

0
Re: Call API Runtime in ACS - Adobe Developer Runtime 05-11-2020
Hard to tell what your end result is meant to be, but you can't "return" multiple times in a single function. If you're wanting 10 responses of "Hello ", you'll need to call the function 10 times.Also, if your action is a web action and is invoked by a web service, the params object contains a lot more information than just the parameters you're passing into the function.

Views

434

Likes

0

Replies

0
Re: Configuring runtime in I/O - Adobe Developer Runtime 28-08-2020
We would also like to know this. We are creating custom APIs for clients leveraging Adobe products we are selling, and would like to keep namespaces separated. As-is, we have to use packages for each client. It works, but would we would like more separation between the clients we service.

Views

1.3K

Likes

0

Replies

0
Cron-style Alarm Trigger - Adobe Developer Runtime 28-08-2020
Hey there, I've set up an action I'd like to run at 12:30am EST every night. I've set up my trigger as the following: wsk trigger create test-t4l \ --feed /whisk.system/alarms/alarm \ --param cron "30 0 * * *" \ --param stopDate "2021-10-31T23:59:00.000Z" The trigger is created successfully and when I "get" the trigger, it shows the correct cron schedule. However, I checked the activation logs this morning and the action did not run until 4:30am.Am I missing a timezone difference or something? I...

Views

683

Likes

0

Replies

4
Weird Runtime Error: The action did not produce a valid response and exited unexpectedly. - Adobe Developer Runtime 08-05-2020
I have two Runtime actions:1) Get a list (array) of files to download (filename -> download URL)2) Upload file contents to database. The array in action 1 contains 200-250 key/value pairs at any given time. Per key/value pair in the Action 1 array, I invoke action 2 (upload files) as non-blocking via the OpenWhisk package. I'm also leveraging a 5 second delay after every 10 results to avoid concurrency error. for (let i = 0; i < filesToUpload.length; i++) { if((i + 1) % 10 === 0 )await sleep(500...

Views

3.2K

Likes

0

Replies

1
CORS error on Runtime API endpoint - Adobe Developer Runtime 20-02-2020
I'm setting up an API through OpenWhisk with multiple endpoints:/privacy/jobs/create POST/privacy/jobs/{jobID} GET/privacy/jobs/files/{jobID} GET/privacy/events/ GET and POSTfor my POST /jobs/create endpoint, I am getting CORS errors: Access to XMLHttpRequest at 'https://runtime.adobe.io/apis/****/privacy/jobs/create' from origin 'https://requestdomain.com' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is...

Views

3.8K

Likes

0

Replies

1
Re: No Request Body (Payload) in Privacy Event from Adobe... - Adobe Developer Events 20-02-2020
Figured it out. Use the express.json() method to parse your body. Not mentioned in the setup docs.

Views

3.2K

Likes

0

Replies

0
No Request Body (Payload) in Privacy Event from Adobe IO Events - Adobe Developer Events 10-02-2020
*SOLVED. ANSWER BELOW*I am following the documentation for Subscribing to Privacy Events (found here). Things I have done:1. I have created my local Node.JS/Express App and linked it to ngrok for a public URL.2. I have linked my webhook ngrok url to a Privacy Events integration and verified the challenge. 3. I have set up a "post" route on the root "/" and am logging the request, however there is no body: app.post('/', function(request, response) { console.log(request); console.log(request.body)...

Views

3.2K

Likes

0

Replies

1
Likes given to