Jerod King

Results 5 comments of Jerod King

If you're sending to a syslog endpoint, you can add filtering on the endpoint to achieve this: `syslog+tls://papertrail.com:6405?filter.name=*container-name*` I don't know if there is a way to achieve multiple names.

I did not. I ended up just removing the package from my app. I did not find a suitable replacement either.

I don't know if this is the same issue, I do see the PR mentioning this thread in the pngquant-bin repo. I was getting a similar error while trying to...

I wrote a wrapper with generics as a work around: ``` async function insertQuery(sql, options = {}): Promise { options = _.extend(options, {type: QueryTypes.INSERT}); const data = await sequelize.query(sql, options);...

I'm also running into this problem with SequelizeJS when doing a relationship with A.hasMany(B) and B.belongsTo(A). Edit: I was able to get around this for Sequelize by defining my models...