-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve: 複数エンジン登録時の起動を高速化 #1015
Improve: 複数エンジン登録時の起動を高速化 #1015
Conversation
state.engineManifests = { | ||
...state.engineManifests, | ||
[engineId]: engineManifest, | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
たしか普通にこうで良いはず!
state.engineManifests = { | |
...state.engineManifests, | |
[engineId]: engineManifest, | |
}; | |
state.engineManifests[engineId] = engineManifest; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
それだとなぜかcomputedのところが更新されなかったんですよね。
MenuBarのアイコンのところが埋まりませんでした。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
うーん、なるほどです。なんでだろう。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
state.xxx =のところにcomputedとかの更新処理が挟まってて、[engineId] = だとそれが行われないのかも(自分の勝手な予想)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!
@raa0121 さん
すみません、また実行チェックなどお願いできると嬉しいです!!
実行チェックできました。 |
engine_manifestのポート番号を実際のと変えたりすると、接続不可になってセーフモードのチェックもできるかもです! |
そもそもセーフモードのボタンはこのブランチに無いような…? |
そうですね、未マージの状態でした。 |
手元でマージしたら、conflict しましたね… |
あ!!すみません、セーフモードのプルリクエストだと勘違いしました!!! |
内容
複数エンジン登録時の起動を高速化します。
旧実装:
新実装:
関連 Issue
(なし)
スクリーンショット・動画など
(なし)
その他
(なし)