senecajs / seneca-transport

Seneca micro-services message transport over TCP and HTTP.
MIT License
63 stars 45 forks source link

A bug about `track.push is not a function`. #174

Open ching2018 opened 3 years ago

ching2018 commented 3 years ago

Line 183:

track.push(seneca.id)

should be :

Array.isArray(track) && track.push(seneca.id)