diff --git a/app/views/install/compose.phtml b/app/views/install/compose.phtml index 70c6fbdebd..16aedb47fd 100644 --- a/app/views/install/compose.phtml +++ b/app/views/install/compose.phtml @@ -787,7 +787,7 @@ $image = $this->getParam('image', ''); <<: *x-logging restart: unless-stopped stop_signal: SIGINT - image: openruntimes/executor:0.5.5 + image: openruntimes/executor:0.6.2 networks: - appwrite - runtimes diff --git a/docker-compose.yml b/docker-compose.yml index d28586bf7b..a44e7ff006 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -873,7 +873,7 @@ services: hostname: exc1 <<: *x-logging stop_signal: SIGINT - image: openruntimes/executor:0.6.1 + image: openruntimes/executor:0.6.2 restart: unless-stopped networks: - appwrite diff --git a/src/Appwrite/Utopia/Fetch/BodyMultipart.php b/src/Appwrite/Utopia/Fetch/BodyMultipart.php index 3869150758..c697b4e5c0 100644 --- a/src/Appwrite/Utopia/Fetch/BodyMultipart.php +++ b/src/Appwrite/Utopia/Fetch/BodyMultipart.php @@ -136,7 +136,11 @@ class BodyMultipart } $query .= $eol . $eol; - $query .= $value . $eol; + if ($value === false) { + $query .= 0 . $eol; + } else { + $query .= $value . $eol; + } $query .= '--' . $this->boundary; } diff --git a/src/Executor/Executor.php b/src/Executor/Executor.php index 3206381e95..d6459a5ba7 100644 --- a/src/Executor/Executor.php +++ b/src/Executor/Executor.php @@ -168,6 +168,7 @@ class Executor * @param string $source * @param string $entrypoint * @param string $runtimeEntrypoint + * @param bool $logging * * @return array */