views:

40

answers:

1

Hi All,

I have my database password starting with a '*'. When i put this on my production server i get following error:

- syntax error on line 17, col 25: ` password: *---------'.Exception class:ArgumentError.

Thanks, Anubhaw

+1  A: 

The asterisk (*) has special meaning in YAML. Try using a quoted scalar:

password: '*-------'
NullUserException