fixed error handling in creating
Signed-off-by: tracer <tracer@24unix.net>
This commit is contained in:
parent
44ff33120d
commit
b0535a3d18
|
@ -445,7 +445,7 @@ class BindAPI
|
|||
echo COLOR_RED . ' ' . $result['header'] . COLOR_DEFAULT;
|
||||
$arguments = $this->parseArguments();
|
||||
if (!empty($arguments['fix']) && $arguments['fix'] == 'yes') {
|
||||
echo 'trying to fix …';
|
||||
echo ' trying to fix …';
|
||||
$body = [
|
||||
'name' => $domainName,
|
||||
'panel' => $panel->getName(),
|
||||
|
@ -474,9 +474,10 @@ class BindAPI
|
|||
echo $e->getMessage();
|
||||
exit(1);
|
||||
}
|
||||
print_r(value: $create);
|
||||
if ($create['header'] != 200) {
|
||||
if ($create['header'] != 201) {
|
||||
die("make error handling");
|
||||
} else {
|
||||
echo COLOR_GREEN . 'OK';
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue