Skip to content

Commit fca4855

Browse files
Merge pull request #42 from open-runtimes/fix-remote-storage
Fix: Remote storage
2 parents c4d9229 + c2f468b commit fca4855

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ function removeAllRuntimes(Table $activeRuntimes, Orchestration $orchestration):
429429
* Copy code files from source to a temporary location on the executor
430430
*/
431431
if (!empty($source)) {
432-
if (!$localDevice->transfer($source, $tmpSource, $sourceDevice)) {
432+
if (!$sourceDevice->transfer($source, $tmpSource, $localDevice)) {
433433
throw new Exception('Failed to copy source code to temporary directory', 500);
434434
};
435435
}

0 commit comments

Comments
 (0)