LoginSignup
1
1

More than 3 years have passed since last update.

mysql + serverless frameworkで"Received packet in the wrong sequence."

Posted at
  • 事象
  • offlineでは発生しない
  • リリースすると発生する
  • offlineでも、productionだと発生する

webpackの圧縮あたりがおかしい?

  • 対策

minimizeをオフにする。出来れば、mysqlだけoffにしたい。

webpack.config.js

module.exports = {
  ...
  optimization: {
    minimize: false
  }
};

参考
- browserfyでも
http://synonym177.hatenadiary.jp/entry/2015/12/09/Received_packet_in_the_wrong_sequence._%E3%82%A8%E3%83%A9%E3%83%BC%E3%81%B8%E3%81%AE%E5%AF%BE%E5%87%A6

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1