Skip to content

Commit c5b7481

Browse files
committed
Fix wrong reference to S3 deployer namespace
1 parent c84b7b3 commit c5b7481

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/S3/Deployer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function uploadFilesIter( \Iterator $files ): void {
193193

194194
$is_cached = DeployCache::fileisCached(
195195
$cache_key,
196-
$this->namespace,
196+
self::DEFAULT_NAMESPACE,
197197
$hash,
198198
);
199199

@@ -231,7 +231,7 @@ function ( $result, $iter_key, $promise ) use ( &$items_by_iter_key ) {
231231
$item = $items_by_iter_key[ $iter_key ];
232232
DeployCache::addFile(
233233
$item['cache_key'],
234-
$this->namespace,
234+
self::DEFAULT_NAMESPACE,
235235
$item['hash']
236236
);
237237
$this->addCfPath( $item['cache_key'] );

0 commit comments

Comments
 (0)