Skip to content

Commit

Permalink
* Bumping the release from Test Candidate to Release Candidate phase.
Browse files Browse the repository at this point in the history
* Cleaned up ScanCore->get_servers() to not return undefined variables.

Signed-off-by: Digimer <[email protected]>
  • Loading branch information
digimer committed Oct 31, 2016
1 parent 6d89c08 commit f6a15a9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions AN/Tools/ScanCore.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1179,22 +1179,22 @@ FROM
}, file => $THIS_FILE, line => __LINE__});
foreach my $row (@{$results})
{
my $server_uuid = $row->[0];
my $server_anvil_uuid = $row->[1];
my $server_name = $row->[2];
my $server_stop_reason = $row->[3];
my $server_start_after = $row->[4];
my $server_start_delay = $row->[5];
my $server_note = $row->[6] ? $row->[6] : "";
my $server_definition = $row->[7];
my $server_host = $row->[8];
my $server_state = $row->[9];
my $server_migration_type = $row->[10];
my $server_pre_migration_script = $row->[11];
my $server_pre_migration_arguments = $row->[12];
my $server_post_migration_script = $row->[13];
my $server_post_migration_arguments = $row->[14];
my $modified_date = $row->[15];
my $server_uuid = $row->[0];
my $server_anvil_uuid = $row->[1];
my $server_name = $row->[2];
my $server_stop_reason = defined $row->[3] ? $row->[3];
my $server_start_after = defined $row->[4] ? $row->[4];
my $server_start_delay = $row->[5];
my $server_note = defined $row->[6] ? $row->[6] : "";
my $server_definition = $row->[7];
my $server_host = defined $row->[8] ? $row->[8] : "";
my $server_state = defined $row->[9] ? $row->[9] : "";
my $server_migration_type = $row->[10];
my $server_pre_migration_script = defined $row->[11] ? $row->[11] : "";
my $server_pre_migration_arguments = defined $row->[12] ? $row->[12] : "";
my $server_post_migration_script = defined $row->[13] ? $row->[13] : "";
my $server_post_migration_arguments = defined $row->[14] ? $row->[14] : "";
my $modified_date = $row->[15];
$an->Log->entry({log_level => 3, message_key => "an_variables_0016", message_variables => {
name1 => "server_uuid", value1 => $server_uuid,
name2 => "server_anvil_uuid", value2 => $server_anvil_uuid,
Expand Down
2 changes: 1 addition & 1 deletion tools/anvil-generate-iso
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ my $conf = {
# git master with '--master', in which case we will download the 'striker_master' URL. In all
# cases, the downloaded file will be saved as 'striker_zip_file'.
striker => "https://github.com/ClusterLabs/striker.git",
striker_default => "https://github.com/ClusterLabs/striker/archive/2.0.0b-tc9.zip",
striker_default => "https://github.com/ClusterLabs/striker/archive/2.0.0b-rc1.zip",
striker_latest => "https://alteeve.ca/striker_latest.txt",
striker_master => "https://codeload.github.com/ClusterLabs/striker/zip/master",
striker_zip_file => "striker.zip",
Expand Down

0 comments on commit f6a15a9

Please sign in to comment.