Ok, so that post sounds like the issue I have.
The is_active database field type is tinyInt, and values in it are integers 0 or 1.
I don't have a BaseEntity method called prepareAttributeValue().
There is however a method public function populateFromArray()
and this doesn't look right:
Would return false for a value of 1.
Before I just hack that, is this saying that the upgrade didn't happen and somehow the container application code did not get reflected onto the bind mount at www/var/html?
What's the best way to check the version of the code that it's actually running (and presumably would be what is present on the bind mount)?
The is_active database field type is tinyInt, and values in it are integers 0 or 1.
I don't have a BaseEntity method called prepareAttributeValue().
There is however a method public function populateFromArray()
and this doesn't look right:
Code:
switch ($valueType) { case self::VARCHAR: break; case self::BOOL: $value = ($value === 'true' || $value === '1' || $value === true); break;
Before I just hack that, is this saying that the upgrade didn't happen and somehow the container application code did not get reflected onto the bind mount at www/var/html?
What's the best way to check the version of the code that it's actually running (and presumably would be what is present on the bind mount)?
Comment