Skip to content
Snippets Groups Projects
Commit 27376697 authored by Yas Naoi's avatar Yas Naoi
Browse files

Issue #3266025 by yas: Hotfix - Fix an error: Object of class...

Issue #3266025 by yas: Hotfix - Fix an error: Object of class Aws\Api\DateTimeResult could not be converted to int in Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema::castValue()
parent 462b0ec0
Branches
Tags
6 merge requests!1759Issue #3356778: Release 5.1.1,!1679Issue #3349074: Fix the OpenStack Project create and edit form in SPA that "Member" cannot be saved due to a validation error,!1607Issue #3343582: Add the function to preview OpenStack stack in the SPA,!1032Issue #3284576: Release 5.0.0-alpha2,!832Issue #3274116: Refactor composer.json to use docomoinnovations/drupal-extension,!781Issue #3269930: Add a BDD test suite for checking no resources created by administrator
......@@ -7,7 +7,6 @@ services:
depends: memcached
commands:
init: |
cat /etc/issue
curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
apt-get update && apt-get install -y gcc g++ make nodejs yarnpkg zlib1g \
libfreetype6-dev libjpeg-dev libmemcached-dev libpng-dev libzip-dev
......
......@@ -234,7 +234,7 @@ class VolumeCreateForm extends AwsCloudContentForm {
return;
}
if(!($entity->setVolumeId($result['VolumeId'])
if (!($entity->setVolumeId($result['VolumeId'])
&& $entity->setCreated(strtotime($result['CreateTime']))
&& $entity->setState($result['State'])
&& $entity->setSnapshotName($this->getSnapshotName($entity->getCloudContext(), $entity->getSnapshotId(), $this->getModuleName($entity)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment