diff --git a/environments/production.yml b/environments/production.yml index 86801b4..3aeb722 100644 --- a/environments/production.yml +++ b/environments/production.yml @@ -9,7 +9,7 @@ logger: "file" # don't consider warnings critical warnings: 0 -# hide errors +# hide errors show_errors: 0 # cache route resolution for maximum performance diff --git a/lib/AtomBus.pm b/lib/AtomBus.pm index 5288eb9..99d0338 100644 --- a/lib/AtomBus.pm +++ b/lib/AtomBus.pm @@ -79,7 +79,7 @@ get '/feeds/:feed_title' => sub { $person->name($db_feed->author_name); $feed->author($person); $feed->updated($db_feed->updated); - + my $self_link = XML::Atom::Link->new; $self_link->rel('self'); $self_link->type('application/atom+xml'); @@ -344,7 +344,7 @@ As long as your database and web server are up, AtomBus will be there for you. And there are many ways to add redundancy to databases and web heads. Another advantage of using AtomBus is that Atom is a well known standard. Everyone already has a client for it, their browser. -Aren't standards great! +Aren't standards great! By the way, if you just need message queues, try L. It rocks. If you need a message bus, give AtomBus a shot.