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
The function this.emit() is only properly defined and working as intended in the process function. Either this.emit() should be defined consistently across all the functions Sailor parses, or at the very least there should be clear documentation regarding where this.emit is defined and where it is not.
Discrepancies within this.emit
At the moment, only in process does this.emit() correctly return a Promise.
In verifyCredentials, getMetaModel, and any Select Views function, this.emit() is defined, but is not an async function and does not return a Promise.
In init(), startup(), and shutdown() methods, this.emit() is not defined at all.
Please refer to the image below for more details:
For this issue to be resolved:
define this.emit for all of the functions above and ensure that it returns a promise (first two columns)
provide documentation in the Sailor README or elsewhere regarding which functions currently support using this.emit
The text was updated successfully, but these errors were encountered:
The function
this.emit()
is only properly defined and working as intended in theprocess
function. Eitherthis.emit()
should be defined consistently across all the functions Sailor parses, or at the very least there should be clear documentation regarding wherethis.emit
is defined and where it is not.Discrepancies within
this.emit
At the moment, only in
process
doesthis.emit()
correctly return a Promise.In
verifyCredentials
,getMetaModel
, and anySelect Views
function,this.emit()
is defined, but is not an async function and does not return a Promise.In
init()
,startup()
, andshutdown()
methods,this.emit()
is not defined at all.Please refer to the image below for more details:
For this issue to be resolved:
this.emit
for all of the functions above and ensure that it returns a promise (first two columns)README
or elsewhere regarding which functions currently support usingthis.emit
The text was updated successfully, but these errors were encountered: