Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-30 Thread 'Dan Kortschak' via golang-nuts
On Thu, 2020-10-29 at 22:54 -0700, Ian Lance Taylor wrote: > On Thu, Oct 29, 2020, 10:48 PM Denis Cheremisov < > denis.cheremi...@gmail.com> wrote: > > Well, as usual I wrote something in the way, not the real thing. > > > > The case is: > > > > - At my company we are using errgroup from that

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Ian Lance Taylor
On Thu, Oct 29, 2020, 10:48 PM Denis Cheremisov wrote: > Well, as usual I wrote something in the way, not the real thing. > > The case is: > > - At my company we are using errgroup from that sync repo in one project, > sync/errgroup in fact mostly. > - It proved to be error prone with its

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Denis Cheremisov
Well, as usual I wrote something in the way, not the real thing. The case is: - At my company we are using errgroup from that sync repo in one project, sync/errgroup in fact mostly. - It proved to be error prone with its context shadowing on errgroup.WithContext so we took the original and

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Wojciech S. Czarnecki
Dnia 2020-10-29, o godz. 06:52:17 Denis Cheremisov napisaƂ(a): > Hi! > At my job we found these additional patents > limitatations https://github.com/golang/sync/blob/master/PATENTS > They makes us impossible to use errgroup (which is, to say, turned to have > pretty poor choice of WithContext

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Ian Lance Taylor
On Thu, Oct 29, 2020 at 6:53 AM Denis Cheremisov wrote: > > Hi! > At my job we found these additional patents limitatations > https://github.com/golang/sync/blob/master/PATENTS > They makes us impossible to use errgroup (which is, to say, turned to have > pretty poor choice of WithContext

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread 'Axel Wagner' via golang-nuts
Disclaimer: IANAL. On Thu, Oct 29, 2020 at 2:53 PM Denis Cheremisov wrote: > At my job we found these additional patents limitatations > https://github.com/golang/sync/blob/master/PATENTS > They makes us impossible to use errgroup (which is, to say, turned to have > pretty poor choice of

[go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Denis Cheremisov
Hi! At my job we found these additional patents limitatations https://github.com/golang/sync/blob/master/PATENTS They makes us impossible to use errgroup (which is, to say, turned to have pretty poor choice of WithContext signature, so our one is different), so we have our custom implementation