You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even in debug mode, there's no further information, no error messages, it simply does not work.
Possible Solution
In fact, one of the datastores sends a 0 as value. @ttb1913 already mentioned a possible solution in #75: I can confirm $this->capacity is interpreted as a string. Putting it in quotes at least makes it work.
126 public function addFreeDatastoreSpace()
127 {
128 print_r($this->capacity);
129 echo ("\n");
130
131 if ($this->capacity === "0" || $this->capacity === null) {
132 return $this;
133 }
Was unsure how to deal with that. It's a known bug, but it's included in release, that's why I made an issue again.
sorry for the late answer, I wasn't available for a few days.
I just patched and it seems to solve the issue, so I'll close this issue.
Thanks for taking care of this so quickly!
Hi,
Expected Behavior
I added to the existing first VMware vCenter Server a second VMware ESXi.
Then I expected the "Datastores" to show up.
Current Behavior
Even in debug mode, there's no further information, no error messages, it simply does not work.
Possible Solution
In fact, one of the datastores sends a
0
as value. @ttb1913 already mentioned a possible solution in #75: I can confirm$this->capacity
is interpreted as a string. Putting it in quotes at least makes it work.Was unsure how to deal with that. It's a known bug, but it's included in release, that's why I made an issue again.
Cheers,
Marianne
Your Environment
The text was updated successfully, but these errors were encountered: