That doesn't look right?
I create a brancher node through the API like this;
$labels = ['hiereenlabel', 'nogeenlabel'];
$client->brancherApp->create($originHypernode, [
'labels' => $labels,
'clear-services' => $clearServices,
]);
Then when I request a list (with the new list command, see #14), I get this;
[0] => Array ( [id] => 15803 [name] => hypernodenamehere-eph1z2ypy
[cost] => 1 [created] => 2023-03-27T16:18:59.326882+02:00
[ip] => [end_time] => [elapsed_time] => 3
[labels] => Array
(
[labelhier] => [nogeenlabel] => ) )
I would've expected to see:
[labels] => Array
(
[0] => 'labelhier'
[1] => 'nogeenlabel'
)
That doesn't look right?
I create a brancher node through the API like this;
Then when I request a list (with the new list command, see #14), I get this;
I would've expected to see: