You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Okay so the problem is in the readme and interface.
export const eventBusConfig = (allowedEvents): EventBusConfigType => ({
read: {
allowedEvents,
},
write: {
serviceName: process.env.APP_NAME,
validate: false, ----> wrong here
prepare: false, ----> wrong here
},
validate: false, ---> works
prepare: false ---> works
});
Secondly, setting validate to true, i was getting error that corelation-id is missing. But after setting to false, it bypasses validation, but in the event itself i see in metadata,
correlation_id is present! so if it could generate why it didn't before when the value to validate was true?
any idea's why this is happening? i have included the context module in app module.
The text was updated successfully, but these errors were encountered: