콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
19770 화면

.py codes:

 @api.multi
 def plotfig(self,cr):
   x=[1,2,3,4]
   y=[4,7,9,8]
   plt.plot(x,y)
   tem='/tmp/%s.png' % cr['uid']
   plt.savefig(tem)
   pic_data=open(tem,'rb').read()
   self.write({'Pic':base64.encodestring(pic_data)})
   os.remove(tem)

Now when user create a record and clicks button "plotfig", a figure will be shown on "Pic"; all seams ok untill now;

but if the user create another record and clicks button "plotfig" again, he/she will get warning: "RuntimeError: main thread is not in main loop"; sometime the warning is "Fatal Python error: GC object already tracked Aborted" / "Segmentation fault" and the Odoo server will shut down automaticly.

if I click "Ctrl+c" to stop Odoo server, I will also get warning: "RuntimeError: main thread is not in main loop";

I don;t know how to resolve these problems.

아바타
취소
베스트 답변

it may caused by using matpltlib , so 

just put this 'plt.switch_backend('agg')'  under 'from maipltlib....' 


아바타
취소
관련 게시물 답글 화면 활동
2
3월 24
1650
0
4월 23
2333
1
8월 22
4861
1
3월 21
4314
2
7월 18
29301