This topic was automatically generated from Slack. You can find the original thread here.
Hi, everyone,
I continuously get an error in my pipedream workflow:
Error communicating with data store
at null.createError (/var/task/node_modules/@lambda-v2/component-runtime/node_modules/axios/lib/core/createError.js:16:15)
Failing step tries to write some value (small JSON) into the data store. I took a look at glance, but found nothing except the mention about out of quote in current plan. But looks like my storage usage is below limit and I didn’t find any other limit constraints.
if (!event) {
return null;
}
const key = `${event.targetName} ${event.eventType}`;
const current = await this.myDataStore.get(key);
// take the first value available
const value = event.data;
if (!value) {
return;
}
await this.myDataStore.set(key, value);
return null;