IRC logs of #tryton for Tuesday, 2017-10-31

chat.freenode.net #tryton log beginning Tue Oct 31 00:00:01 CET 2017
2017-10-31 01:19 -!- cedk(~ced@host-85-201-184-151.dynamic.voo.be) has joined #tryton
2017-10-31 01:19 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2017-10-31 02:21 -!- JanGB(~jan@ipservice-092-208-134-251.092.208.pools.vodafone-ip.de) has joined #tryton
2017-10-31 05:17 -!- thaneor1(~ldlc6@r179-25-52-197.dialup.adsl.anteldata.net.uy) has joined #tryton
2017-10-31 07:45 -!- JanGB(~jan@ipservice-092-208-134-251.092.208.pools.vodafone-ip.de) has joined #tryton
2017-10-31 08:01 -!- udono(~udono@139-140-067-156.ip-addr.inexio.net) has joined #tryton
2017-10-31 08:16 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2017-10-31 08:27 -!- rpit(~rpit@p200300C88BD1190056EE75FFFE0DD3C7.dip0.t-ipconnect.de) has joined #tryton
2017-10-31 09:51 -!- nicoe(~nicoe@host-85-201-184-151.dynamic.voo.be) has joined #tryton
2017-10-31 09:55 -!- irclog(~irclog@moretus.b2ck.com) has joined #tryton
2017-10-31 10:11 <pokoli> since http://hg.tryton.org/tryton/rev/438af1da332d/ the error message is not shown on client side, but only on server logs. Is this the expected behaviour?
2017-10-31 10:12 <pokoli> what I mean, is that this dialog is not shown anymore: https://github.com/pokoli/sentry-tryton/blob/master/img/tryton_error.png
2017-10-31 10:15 <cedk> pokoli: it is processed by the sys.excepthook
2017-10-31 10:17 <pokoli> cedk: it's possible that sys.exepthook does nothing?
2017-10-31 10:18 <cedk> pokoli: normally no
2017-10-31 10:18 <pokoli> cedk: I see, the exception get's printed to the stderr, but only when the appliction is closed
2017-10-31 10:21 <cedk> pokoli: you are testing on Windows?
2017-10-31 10:22 <pokoli> cedk: no, on my development machine (linux)
2017-10-31 10:24 <cedk> pokoli: I guess it depends on where the exception is raised and it is catched manually or not
2017-10-31 10:25 <pokoli> cedk: The error I'm testing is raised on the server (it was an error due to a missing column on the database)
2017-10-31 10:25 <pokoli> cedk: instead of seeing the error, i see an empty list of records, which is strange for me as no feedback is given to the user
2017-10-31 10:28 <cedk> pokoli: it is probably because the record read catch the exception silently
2017-10-31 10:30 <cedk> pokoli: maybe we should have kept the last error call
2017-10-31 10:32 <cedk> pokoli: check this: https://codereview.tryton.org/37811002
2017-10-31 10:34 <pokoli> cedk: that fixed it. Now the error dialog is shown
2017-10-31 10:35 <pokoli> cedk: thanks
2017-10-31 10:38 <plaes> ugh.. this function is a monster
2017-10-31 10:40 <cedk> I thought I had improved with changeset 438af1da332d
2017-10-31 10:53 <plaes> yeah.. needs some early returns...
2017-10-31 10:56 <cedk> plaes: fell free to improve it
2017-10-31 11:00 -!- zodman_(~zodman@178.62.7.89) has joined #tryton
2017-10-31 11:04 <plaes> btw.. what would be the most sane way to sync data (parties) against external master data set via cron?
2017-10-31 11:05 <plaes> I was thinking about creating custom party_ext module, which would add external_id field to party
2017-10-31 11:05 <plaes> and then during sync it would correlate via that
2017-10-31 11:06 <plaes> but the cron part is somewhat unclear - where can I add the bulk sync query
2017-10-31 11:07 <plaes> or should I even use proteus with external data file
2017-10-31 11:09 <pokoli> plaes: we have some module that uses the code field to save the external_code
2017-10-31 11:09 <pokoli> plaes: but we have this approach as we want the user to see the other system code
2017-10-31 11:09 <pokoli> plaes: and we run it daily via a cron
2017-10-31 11:10 <pokoli> plaes: I will use proteus if the sync must be done only one or two times
2017-10-31 12:38 <sisalp> Hi, I have again a question from a Mac user who fails to connect from tryton client. OSX 10.12.6 Application Tryton 4.4.2
2017-10-31 12:38 <sisalp> anyone uses this ?
2017-10-31 12:38 -!- raarts(~raarts@h76070.upc-h.chello.nl) has joined #tryton
2017-10-31 12:51 <pokoli> sisalp: not me, but which is the error that the clients gives?
2017-10-31 13:44 <sisalp> pokoli: cannot connect to server in the profile manager when it should get the database list.
2017-10-31 13:52 -!- kobain(~kobain@unaffiliated/kobain) has joined #tryton
2017-10-31 14:20 -!- smarro(~sebastian@181.16.34.86) has joined #tryton
2017-10-31 14:25 -!- csotelo_at_work(~csotelo@179.43.97.56) has joined #tryton
2017-10-31 15:29 -!- lukio(~lukio@200.68.72.41) has joined #tryton
2017-10-31 17:00 -!- JanGB(~jan@ipservice-092-208-134-251.092.208.pools.vodafone-ip.de) has joined #tryton
2017-10-31 17:18 -!- thaneor(~ldlc6@179.26.52.197) has joined #tryton
2017-10-31 18:06 <fmorato[m]> pokoli is the modules for syncing parties public? If so, could you share a link, please?
2017-10-31 18:09 -!- lukio(~lukio@iplan.gcoop.com.ar) has joined #tryton
2017-10-31 18:17 <pokoli> fmorato[m] no it's an internal development which syncs to another product of the company. So it does not makes sense to share
2017-10-31 18:45 <fmorato[m]> Yes, indeed
2017-10-31 19:00 <fmorato[m]> How can I run the Tryton client with GTK+ 3?
2017-10-31 19:08 <cedk> fmorato[m]: GTK_VERSION=3
2017-10-31 19:21 <fmorato[m]> cedk: When I connect to the demo server I get an error from goocalendar: https://thepasteb.in/p/66hAc57W8rkpBCX
2017-10-31 19:22 <fmorato[m]> Is there an issue with current state/issues? I did not find it.
2017-10-31 19:29 -!- Telesight(~anthony@4dae0c97.ftth.telfortglasvezel.nl) has joined #tryton
2017-10-31 20:00 <cedk> fmorato[m]: probably: https://goocalendar.tryton.org/bug4
2017-10-31 22:00 -!- semarie(~semarie@unaffiliated/semarie) has joined #tryton
2017-10-31 23:33 -!- lukio(~lukio@iplan.gcoop.com.ar) has left #tryton

Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!