2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-22 11:42:05 +00:00

Merge pull request #7168 from besawn/gettab_error

Fixed error message typo in tabutils.pm
This commit is contained in:
besawn 2022-05-20 15:23:54 -04:00 committed by GitHub
commit c38b8d45c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -261,7 +261,7 @@ sub gettab
foreach my $tabn (keys %tabhash) {
foreach my $kcheck (keys %keyhash) {
unless (grep /^$kcheck$/, @{ $xCAT::Schema::tabspec{$tabn}->{cols} }) {
$callback->({ error => ["Unkown key $kcheck to $tabn"], errorcode => [1] });
$callback->({ error => ["Unknown key $kcheck to $tabn"], errorcode => [1] });
return;
}
}