Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread sebb
On Thu, 28 Mar 2019 at 05:25, Felix Cheung wrote: > This test is consistently failing when I build, any idea what’s wrong in my > setup? > > - should print unicode correctly *** FAILED *** (101 milliseconds) > ExecuteSuccess(JObject(List((text/plain,JString(☺) did not equal > ExecuteSuccess

Re: FYI, saved the current wiki.apache.org/incubator content to svn

2019-03-28 Thread sebb
On Tue, 26 Mar 2019 at 08:25, Bertrand Delacretaz wrote: > > On Mon, Mar 25, 2019 at 10:16 AM Bertrand Delacretaz > wrote: > > ...I have saved the contents of https://wiki.apache.org/incubator/ at > > https://svn.apache.org/repos/private/pmc/incubator/wiki-archive-march-2019/ > > ... > > FWIW, a

Re: [DISCUSS] Retirement Policy for Artifacts

2019-03-28 Thread Dave Fisher
> On Mar 27, 2019, at 9:30 AM, Henk P. Penning wrote: > > On Wed, 27 Mar 2019, Dave Fisher wrote: > >> Date: Wed, 27 Mar 2019 16:10:00 + >> From: Dave Fisher >> To: general@incubator.apache.org >> Subject: [DISCUSS] Retirement Policy for Artifacts >> In INCUBATOR-198 Infra asked us to cl

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread Felix Cheung
I see, thanks. Perhaps the way I unzip the src zip file then. Is it a better approach to unpack it? On Thu, Mar 28, 2019 at 2:03 AM sebb wrote: > On Thu, 28 Mar 2019 at 05:25, Felix Cheung wrote: > > > This test is consistently failing when I build, any idea what’s wrong in > my > > setup? > >

Re: FYI, saved the current wiki.apache.org/incubator content to svn

2019-03-28 Thread Bertrand Delacretaz
Hi, On Thu, Mar 28, 2019 at 4:14 PM sebb wrote: > ...OK to add the missing pages to the archive?... Sure - I did that quickly, too quickly apparently, thanks for fixing! -Bertrand - To unsubscribe, e-mail: general-unsubscr...@

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread sebb
On Thu, 28 Mar 2019 at 15:42, Felix Cheung wrote: > I see, thanks. Perhaps the way I unzip the src zip file then. Is it a > better approach to unpack it? > > Have a look at the test file source to see if it looks OK. > > On Thu, Mar 28, 2019 at 2:03 AM sebb wrote: > > > On Thu, 28 Mar 2019 at

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread Marcelo Vanzin
Are you using a different encoding that UTF-8 in your environment? The source file contains unicode escapes, so that shouldn't be the problem. It may be the test is expecting the output of child processes (in this case the python interpreter) to be UTF-8. On Wed, Mar 27, 2019 at 10:25 PM Felix Ch

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread Marcelo Vanzin
Also is that failing when running the Python2 or the Python3 version of that test? Maybe it doesn't work as expected in some newer version of Python3... On Thu, Mar 28, 2019 at 10:02 AM Marcelo Vanzin wrote: > Are you using a different encoding that UTF-8 in your environment? > > The source file

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread sebb
On Thu, 28 Mar 2019 at 17:02, Marcelo Vanzin wrote: > Are you using a different encoding that UTF-8 in your environment? > > The source file contains unicode escapes, so that shouldn't be the problem. > It may be the test is expecting the output of child processes (in this case > the python inter

Request for Mentor

2019-03-28 Thread lewis john mcgibbney
Hi general@, The Apache Science Data Analytics Platform (SDAP) (Incubating) project is in need of an active mentor! What is SDAP? http://sdap.apache.org/ SDAP is a technology software solution currently geared to better enable scientists involved in advancing the study of the Earth's physical oce

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread Marcelo Vanzin
I can reproduce it with this: LC_ALL=en_US.ASCII mvn -Pspark-2.4 -Pthriftserver test -pl :livy-repl_2.11 -Dsuites=*.Python2* Seems that Livy's fake python shell expects UTF-8 when running on Python 2. This is not a new bug, so while we should fix it, not sure we need to fix it in this release.

Re: Request for Mentor

2019-03-28 Thread Gang(Gary) Wang
It is a great valuable platform for our living environment, hope I have the opportunity to help this project success. Gary(Binding) On Thu, Mar 28, 2019, 11:50 AM lewis john mcgibbney wrote: > Hi general@, > > The Apache Science Data Analytics Platform (SDAP) (Incubating) project is > in need

Re: Request for Mentor

2019-03-28 Thread Trevor Grant
Looks like an awesome project, I'd be happy to help. On Thu, Mar 28, 2019 at 1:50 PM lewis john mcgibbney wrote: > Hi general@, > > The Apache Science Data Analytics Platform (SDAP) (Incubating) project is > in need of an active mentor! > > What is SDAP? > http://sdap.apache.org/ > SDAP is a tec

[jira] [Commented] (INCUBATOR-212) Incorrect bounce message for retired podling mailing lists

2019-03-28 Thread Dave Fisher (JIRA)
[ https://issues.apache.org/jira/browse/INCUBATOR-212?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16804305#comment-16804305 ] Dave Fisher commented on INCUBATOR-212: --- The redirection should be https://incub

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread Felix Cheung
I have LANG=“en_US.UTF-8” I tried a couple of things finally it passed when I use virtualenv - my python is Python 3, forcing that to Python 2 passed the test. However, now another test failed (maybe connection blocked by firewall?) === FAILURES ===

Re: [VOTE] Release Apache Livy 0.6.0 (incubating) based on RC2

2019-03-28 Thread Marcelo Vanzin
On Thu, Mar 28, 2019 at 3:57 PM Felix Cheung wrote: > I have LANG=“en_US.UTF-8” > I tried a couple of things finally it passed when I use virtualenv - my > python is Python 3, forcing that to Python 2 passed the test. Hmmm, that tells me that the python 3 path in the fake shell might not be as

Re: FYI, saved the current wiki.apache.org/incubator content to svn

2019-03-28 Thread sebb
On Thu, 28 Mar 2019 at 16:14, Bertrand Delacretaz wrote: > > Hi, > > On Thu, Mar 28, 2019 at 4:14 PM sebb wrote: > > ...OK to add the missing pages to the archive?... > > Sure - I did that quickly, too quickly apparently, thanks for fixing! There's another issue. wget by default downloads files

Re: FYI, saved the current wiki.apache.org/incubator content to svn

2019-03-28 Thread sebb
On Thu, 28 Mar 2019 at 23:42, sebb wrote: > > On Thu, 28 Mar 2019 at 16:14, Bertrand Delacretaz > wrote: > > > > Hi, > > > > On Thu, Mar 28, 2019 at 4:14 PM sebb wrote: > > > ...OK to add the missing pages to the archive?... > > > > Sure - I did that quickly, too quickly apparently, thanks for f

Re: FYI, saved the current wiki.apache.org/incubator content to svn

2019-03-28 Thread sebb
On Thu, 28 Mar 2019 at 23:54, sebb wrote: > > On Thu, 28 Mar 2019 at 23:42, sebb wrote: > > > > On Thu, 28 Mar 2019 at 16:14, Bertrand Delacretaz > > wrote: > > > > > > Hi, > > > > > > On Thu, Mar 28, 2019 at 4:14 PM sebb wrote: > > > > ...OK to add the missing pages to the archive?... > > > >

Re: FYI, saved the current wiki.apache.org/incubator content to svn

2019-03-28 Thread Dave Fisher
Sent from my iPhone >> On Mar 28, 2019, at 5:51 PM, sebb wrote: >> >>> On Thu, 28 Mar 2019 at 23:54, sebb wrote: >>> >>> On Thu, 28 Mar 2019 at 23:42, sebb wrote: >>> >>> On Thu, 28 Mar 2019 at 16:14, Bertrand Delacretaz >>> wrote: Hi, > On Thu, Mar 28, 2019 at 4:14

Re: Setting up Tuweni

2019-03-28 Thread Antoine Toulme
Following up: The DNS and LDAP requests are fulfilled. Using the self-serve portal I have requested mailing lists dev, users, issues, private. I have requested the JIRA project creation with the key TUWENI. I however will need help with the git repository creation: https://gitbox.apache.org/setu

Re: Setting up Tuweni

2019-03-28 Thread Antoine Toulme
Never mind, I read the dos again and opened an infra ticket to open the git repository. > On Mar 28, 2019, at 10:13 PM, Antoine Toulme wrote: > > Following up: > > The DNS and LDAP requests are fulfilled. Using the self-serve portal I have > requested mailing lists dev, users, issues, private