Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes and doc changes
  • Loading branch information
jberger committed Oct 13, 2014
1 parent 59018b7 commit c4dff2d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion lib/Galileo.pm
Expand Up @@ -292,7 +292,19 @@ Warning: As usual, proper care should be taken when upgrading a database. This m
Although L<Galileo> does not need to be configured, it is recommended to do so to set your application's secret. The secret can be any string, however stronger is better. You do not need to memorize it or even remember it. This secret protects the cookies employed by Galileo from being tampered with on the client side.
Note that the database deployment tools may emit debugging information unexpectedly to your terminal, especially messages about "overwriting" and some internal "peek" information. These message are harmless, but as yet cannot be suppressed.
Notes:
=over
=item *
The database deployment tools may emit debugging information unexpectedly to your terminal, especially messages about "overwriting" and some internal "peek" information. These message are harmless, but as yet cannot be suppressed.
=item *
Upgrading database schemas from before Galileo version 0.012 (when schema versioning was introduced) is no longer supported as of version 0.037. The process wasn't testable anyway.
=back
=head3 dump
Expand Down
4 changes: 2 additions & 2 deletions lib/Galileo/Command/setup.pm
Expand Up @@ -92,7 +92,7 @@ sub run {
eval {
$dh->do_install;
$dh->inject_sample_data($user, $pw1, $full);
}
};

if ($@) {
my $error = "$@";
Expand All @@ -110,7 +110,7 @@ sub run {
my $message = $self->flash( 'galileo.message' );

my $dh = $self->dh;
my $installed = $dh->version_installed;
my $installed = $dh->installed_version;
my $available = $dh->schema->schema_version;
my $has_admin = $dh->has_admin_user;

Expand Down

0 comments on commit c4dff2d

Please sign in to comment.