Skip to content

Commit

Permalink
fix false logging message
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <neil.south@answerdigital.com>
  • Loading branch information
neildsouth committed Oct 24, 2023
1 parent ffc26e2 commit 523b057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InformaticsGateway/Services/Storage/ObjectUploadService.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ await _storageService.PutObjectAsync(
metadata,
cancellationToken).ConfigureAwait(false);
storageObjectMetadata.SetUploaded(_configuration.Value.Storage.TemporaryStorageBucket); // deletes local file and sets uploaded to true
_logger.UploadedFileToStoreage(storageObjectMetadata.TemporaryPath);
_logger.UploadedFileToStoreage(path);
storageObjectMetadata.SetMoved(_configuration.Value.Storage.StorageServiceBucketName); // set bucket, date moved, and move complete
})
.ConfigureAwait(false);
Expand Down

0 comments on commit 523b057

Please sign in to comment.