Jeremy Brown

Results 83 comments of Jeremy Brown

The result of this query: ``` mysql.query(`SELECT IF(@@max_user_connections > 0, LEAST(@@max_user_connections,@@max_connections), @@max_connections) AS total, IF(@@max_user_connections > 0,true,false) AS userLimit`) ``` is `[ RowDataPacket { total: 500, userLimit: 0 } ]`

The result of this query: ``` mysql.query(`SELECT COUNT(ID) as total, MAX(time) as max_age FROM information_schema.processlist WHERE (user = ? AND @@max_user_connections > 0) OR true`, ) ``` is `[ RowDataPacket...

The result of this query: ``` mysql.query(`SELECT ID, time FROM information_schema.processlist WHERE command = "Sleep" AND time >= ? AND user = ? ORDER BY time DESC`, [60*15, ) ```...

MySQL info: |Variable Name|Vale| |--|--| |innodb_version|5.5.61-MariaDB-38.13| |protocol_version|10| |slave_type_conversions|| |version|5.5.64-MariaDB| |version_comment|MariaDB Server| |version_compile_machine|x86_64| |version_compile_os|Linux|

When use `await mysql.end()` none of * `onClose` * `onKill` * `onKillError` * `onRetry` * `onError` fire but using `await mysql.quit()` `onClose` does

You have to set/define these in the initial `const mysql = require('serverless-mysql')({})` call. This was initially throwing me.

While this link was broken at the time this issue was initially created the `example.html` has been removed completely in https://github.com/clintjhill/ember-parse-adapter/pull/54 and replaced with the demo app within the add...

@mixonic @clintjhill I brought up the differences between the installation instructions before, but it was before the repo had actually been converted to an Ember CLI Addon and merged. (Unrelated)...

Just a recommendation, as this is not my project, but given that https://github.com/clintjhill/ember-parse-adapter/pull/54 has been merged which converts this library into an Ember CLI Addon you may wish to tag...

The reason this pull request contains merge conflicts that must be resolved, beyond the obvious understanding of what that means, is because https://github.com/clintjhill/ember-parse-adapter/pull/54 converted this library into an Ember CLI...