Re: Errors in Clojure

2011-08-20 Thread r0man
The message 'FATAL: role "lobos" does not exist' says you are trying to connect to PostgreSQL as the user/role "lobos". I saw that you defined a :user in your config, but maybe it doesn't get picked up by lobos. Just my 2 cents ... Roman -- You received this message because you are subscribed to

Re: Errors in Clojure

2011-08-19 Thread Chouser
2011/8/19 J. Pablo Fernández : > Petr, I do not care about this particular error, but about how to deal with > this one liners. Ambrose's reply is what I needed, and no, it's not > PostgreSQL problem. It's a library trying to establish a connection when it > shouldn't with credentials that should n

Re: Errors in Clojure

2011-08-19 Thread J . Pablo Fernández
Petr, I do not care about this particular error, but about how to deal with this one liners. Ambrose's reply is what I needed, and no, it's not PostgreSQL problem. It's a library trying to establish a connection when it shouldn't with credentials that should never be used because I never specif

Re: Errors in Clojure

2011-08-19 Thread Petr Gladkikh
This is postgresql exception so problem is there (it's not Clojure's one). Just try to connect via some other tool to confirm this, use psql in command line, for example. Maybe there is missing group role that is linked to login role 'mgr'. PS: I hope that password is not a confidential one :) 20

Re: Errors in Clojure

2011-08-19 Thread Ambrose Bonnaire-Sergeant
Hi, The last thrown Exception/Error is kept in the var *e. You should be able to view the complete stack trace of the last thrown exception by calling something like: (.printStackTrace *e) Ambrose 2011/8/19 J. Pablo Fernández > Hello Clojurians, > > I'm struggling to work with errors in Cloj