Commit a93ae940 authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Do not call changeState from acquired method to prevent deadlock

parent c83cb5e6
...@@ -466,7 +466,7 @@ ...@@ -466,7 +466,7 @@
}) })
.allowPublicAcquisition('renderEditorPanel', .allowPublicAcquisition('renderEditorPanel',
function renderEditorPanel(param_list) { function renderEditorPanel(param_list) {
return this.changeState({ return this.deferChangeState({
// Force calling editor panel render // Force calling editor panel render
editor_panel_render_timestamp: new Date().getTime(), editor_panel_render_timestamp: new Date().getTime(),
editor_panel_url: param_list[0], editor_panel_url: param_list[0],
...@@ -528,6 +528,10 @@ ...@@ -528,6 +528,10 @@
) { ) {
return this.render.apply(this, param_list); return this.render.apply(this, param_list);
}) })
.declareJob('deferChangeState', function deferChangeState(state) {
return this.changeState(state);
})
.onStateChange(function onStateChange(modification_dict) { .onStateChange(function onStateChange(modification_dict) {
var gadget = this, var gadget = this,
route_result = gadget.state, route_result = gadget.state,
......
...@@ -230,7 +230,7 @@ ...@@ -230,7 +230,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>971.13336.56125.62259</string> </value> <value> <string>971.13351.46212.20787</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -248,7 +248,7 @@ ...@@ -248,7 +248,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1540559619.45</float> <float>1540560524.97</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment