Re: Connection Refused Error

2018-03-21 Thread Joao De Almeida Pereira
Hello Rahul, Did you change the /etc/postgresql/10/main/pg_hba.conf file configuration to allow connections? if not take a look at https://www.thegeekstuff.com/2014/02/enable-remote-postgresql-connection/ this should guide you but basically you need to change the METHOD to `trust` on the

Re: Connection Refused Error

2018-03-21 Thread Rahul Soshte
Hi, I solved the bug,actually what I had done was I had installed postgresql without the version number i.e using this command sudo apt-get install postgresql I uninstalled postgresql using this command sudo apt-get remove --purge postgresql-9.6 and reinstalled with the version number i.e

Re: v3.0 release on hold

2018-03-21 Thread Joao De Almeida Pereira
Hi Dave, I think that this Gnome issue should be addressed after the release of 3.0. We should create a bug and see the best way to address it after. This is my proposal, because I am not 100% sure where this application indicator should live. If we search the web for application indicators we can

pgAdmin 4 commit: Bump version for release.

2018-03-21 Thread Dave Page
Bump version for release. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=6668d5eb9399303d7a27de2e66fcd00a325c049e Modified Files -- web/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

Re: pgAdmin4 form control error icon position change

2018-03-21 Thread Aditya Toshniwal
Created - https://redmine.postgresql.org/issues/3226 On Wed, Mar 21, 2018 at 2:51 PM, Murtuza Zabuawala < murtuza.zabuaw...@enterprisedb.com> wrote: > Hello Aditya, > > Could you please create new RM > for the issue, so that > we can keep track

Jenkins build is back to normal : pgadmin4-master-python36 #535

2018-03-21 Thread pgAdmin 4 Jenkins
See

Jenkins build is back to normal : pgadmin4-master-python33 #542

2018-03-21 Thread pgAdmin 4 Jenkins
See

pgAdmin 4 commit: Secure runtime temp files.

2018-03-21 Thread Dave Page
Secure runtime temp files. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=80b29a85cc98effde6c4f919cf90d9aababd22ad Modified Files -- runtime/Server.cpp | 2 ++ runtime/pgAdmin4.cpp | 1 + 2 files changed, 3 insertions(+)

Re: [pgadmin][patch] [GreenPlum] When user press Explain Plan and Explain analyze plan an error is displayed

2018-03-21 Thread Dave Page
Thanks, applied. All tests pass on my machine, now waiting for Jenkins to run. Assuming all is good, I'll build the release packages. On Wed, Mar 21, 2018 at 7:27 AM, Akshay Joshi wrote: > Hi Victoria, > > In "is_new_transaction_required.js" file I have

Jenkins build is back to normal : pgadmin4-master-python35 #543

2018-03-21 Thread pgAdmin 4 Jenkins
See

pgAdmin4 form control error icon position change

2018-03-21 Thread Aditya Toshniwal
*Hi Team,* This is regarding the position of error icon of a pgAdmin form control. Below are the screenshots. As we can see, the error icon is overlapping the control buttons like the drop down button, spinner up down buttons, etc. We propose that we can move the error icon to the front of

pgAdmin 4 commit: Fix a number of broken connection detection scenarios

2018-03-21 Thread Dave Page
Fix a number of broken connection detection scenarios. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=637f3b9d1a54df8b9a1bfad9e26f27fdea407683 Author: Akshay Joshi Modified Files --

Checklist before sending patch to pgAdmin4-hackers

2018-03-21 Thread Murtuza Zabuawala
Hello, Here is the common checklist to follow before sending patch to pgAdmin4-hackers group, 1) Get the latest pull from master branch. 2) Apply your patch and check if applies successfully on the latest code. 3) Check for PEP8 issues - activate virtual env - cd ../web - yarn run pep8 4) Run

Re: [pgadmin][patch] [GreenPlum] When user press Explain Plan and Explain analyze plan an error is displayed

2018-03-21 Thread Akshay Joshi
Hi Victoria, In "is_new_transaction_required.js" file I have modified the code and handled both "responseJSON" and "axios" responses, but in your patch you have removed "responseJSON" part which is required because "i *s_new_transaction_required*()" function is also called from sqleditor.js with

Jenkins build is back to normal : pgadmin4-master-python27 #544

2018-03-21 Thread pgAdmin 4 Jenkins
See

Re: Experiencing issues

2018-03-21 Thread Murtuza Zabuawala
Yes, that's cookie related issue (RM#3197), To fix that I added below in my config_local.py and it started working again, DEFAULT_SERVER = '0.0.0.0' COOKIE_DEFAULT_DOMAIN = SESSION_COOKIE_DOMAIN = DEFAULT_SERVER Clear your browser cookies and server side sessions. -- Regards, Murtuza Zabuawala

Re: Experiencing issues

2018-03-21 Thread Joao De Almeida Pereira
So what you are saying is that if I have a server, I need to do DEFAULT_SERVER=0.0.0.0 and then set the real domain on the COOKIE domain? On Wed, Mar 21, 2018 at 10:55 AM Khushboo Vashi < khushboo.va...@enterprisedb.com> wrote: > On Wed, Mar 21, 2018 at 8:10 PM, Joao De Almeida Pereira < >

Experiencing issues

2018-03-21 Thread Joao De Almeida Pereira
Hello Hackers, Can anyone use the current master branch? When I try to open a server I get a 428. Is that only me? Thanks Joao

Re: Experiencing issues

2018-03-21 Thread Joao De Almeida Pereira
Where can I find information about that? On Wed, Mar 21, 2018 at 10:16 AM Khushboo Vashi < khushboo.va...@enterprisedb.com> wrote: > > > On 21 Mar 2018 19:41, "Joao De Almeida Pereira" < > jdealmeidapere...@pivotal.io> wrote: > > Hello Hackers, > Can anyone use the current master branch? > When

Re: Experiencing issues

2018-03-21 Thread Joao De Almeida Pereira
Ok Murtuza you are right, Now my question is I have the default server to 127.0.0.1 and I want to access it using localhost as well. How can I do this? On Wed, Mar 21, 2018 at 10:39 AM Khushboo Vashi < khushboo.va...@enterprisedb.com> wrote: > > > On 21 Mar 2018 20:01, "Joao De Almeida Pereira"

Re: Experiencing issues

2018-03-21 Thread Khushboo Vashi
On 21 Mar 2018 19:41, "Joao De Almeida Pereira" < jdealmeidapere...@pivotal.io> wrote: Hello Hackers, Can anyone use the current master branch? When I try to open a server I get a 428. Is that only me? May be because of cookie changes. Check your config.py and config_local.py if you have done

Re: Experiencing issues

2018-03-21 Thread Dave Page
On Wed, Mar 21, 2018 at 2:11 PM, Joao De Almeida Pereira < jdealmeidapere...@pivotal.io> wrote: > Hello Hackers, > Can anyone use the current master branch? > When I try to open a server I get a 428. Is that only me? > Both ssh and https seem to be working fine for me. -- Dave Page Blog:

Re: Experiencing issues

2018-03-21 Thread Khushboo Vashi
On 21 Mar 2018 20:02, "Dave Page" wrote: On Wed, Mar 21, 2018 at 2:29 PM, Murtuza Zabuawala wrote: > Yes, that's cookie related issue (RM#3197), To fix that I added below in > my config_local.py and it started working again, > >

Re: Experiencing issues

2018-03-21 Thread Khushboo Vashi
On Wed, Mar 21, 2018 at 8:27 PM, Joao De Almeida Pereira < jdealmeidapere...@pivotal.io> wrote: > So what you are saying is that if I have a server, I need to do > DEFAULT_SERVER=0.0.0.0 and then set the real domain on the COOKIE domain? > > No I am saying, whatever you set as a DEFAULT_SERVER,

Re: v3.0 release on hold

2018-03-21 Thread Akshay Joshi
On 21 Mar 2018 21:05, "Dave Page" wrote: We've run into a number of unexpected issues with the v3.0 release that I think we need to resolve before moving forwards. For the time being, only patches critical to fix these issues should be committed. I'll try to look at 1, though

Re: Experiencing issues

2018-03-21 Thread Khushboo Vashi
On Wed, Mar 21, 2018 at 10:00 PM, Joao De Almeida Pereira < jdealmeidapere...@pivotal.io> wrote: > Another thing when I do this configuration: > > DEFAULT_SERVER = '127.0.0.1' > SESSION_COOKIE_DOMAIN = 'localhost' > COOKIE_DEFAULT_DOMAIN = 'localhost' > > I get the following exception: >

Re: v3.0 release on hold

2018-03-21 Thread Joao De Almeida Pereira
Hello Dave, For number 1: https://blogs.gnome.org/aday/2017/08/31/status-icons-and-gnome/ We might need to build something like: https://itsfoss.com/best-indicator-applets-ubuntu/ Not sure if it is wise to do it in such a short notice. Thanks Joao On Wed, Mar 21, 2018 at 11:38 AM Khushboo Vashi

Re: Experiencing issues

2018-03-21 Thread Joao De Almeida Pereira
Another thing when I do this configuration: DEFAULT_SERVER = '127.0.0.1' SESSION_COOKIE_DOMAIN = 'localhost' COOKIE_DEFAULT_DOMAIN = 'localhost' I get the following exception: builtins.ValueError ValueError: Setting 'domain' for a cookie on a server running localy (ex: localhost) is not

Re: Experiencing issues

2018-03-21 Thread Joao De Almeida Pereira
I tried that but still nothing. When i check in the inspector for cookies I have none On Wed, Mar 21, 2018 at 10:30 AM Murtuza Zabuawala < murtuza.zabuaw...@enterprisedb.com> wrote: > Yes, that's cookie related issue (RM#3197), To fix that I added below in > my config_local.py and it started

Re: Experiencing issues

2018-03-21 Thread Dave Page
On Wed, Mar 21, 2018 at 2:29 PM, Murtuza Zabuawala < murtuza.zabuaw...@enterprisedb.com> wrote: > Yes, that's cookie related issue (RM#3197), To fix that I added below in > my config_local.py and it started working again, > > DEFAULT_SERVER = '0.0.0.0' > COOKIE_DEFAULT_DOMAIN =

Re: Experiencing issues

2018-03-21 Thread Khushboo Vashi
On 21 Mar 2018 20:01, "Joao De Almeida Pereira" < jdealmeidapere...@pivotal.io> wrote: I tried that but still nothing. When i check in the inspector for cookies I have none Share your config_local file. On Wed, Mar 21, 2018 at 10:30 AM Murtuza Zabuawala

v3.0 release on hold

2018-03-21 Thread Dave Page
We've run into a number of unexpected issues with the v3.0 release that I think we need to resolve before moving forwards. For the time being, only patches critical to fix these issues should be committed. I'll try to look at 1, though I do have another deadline I need to meet. Akshay, can you

Re: Experiencing issues

2018-03-21 Thread Dave Page
On Wed, Mar 21, 2018 at 3:57 PM, Joao De Almeida Pereira < jdealmeidapere...@pivotal.io> wrote: > Sorry I did not understand what you said. > This configuration: > > DEFAULT_SERVER = '0.0.0.0' > SESSION_COOKIE_DOMAIN = DEFAULT_SERVER > COOKIE_DEFAULT_DOMAIN = DEFAULT_SERVER > > If the application

Re: v3.0 release on hold

2018-03-21 Thread Dave Page
Hi On Wed, Mar 21, 2018 at 4:22 PM, Joao De Almeida Pereira < jdealmeidapere...@pivotal.io> wrote: > Hello Dave, > For number 1: https://blogs.gnome.org/aday/2017/08/31/status-icons- > and-gnome/ > We might need to build something like: https://itsfoss.com/ > best-indicator-applets-ubuntu/ > Not