Skip to content

Commit

Permalink
fix: arrgh (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybeeelsdon authored Jul 25, 2024
1 parent 5c21c62 commit e8d74e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DARE-API/Services/ConsumeInternalMessageService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private void Process(IMessage<int> message, MessageReceivedInfo info)
string fileName = Path.GetFileName(uri.LocalPath);
Log.Information("{Function} Full file loc {File}, Incoming URL {URL}, our minio {Minio}", "Process", fileName, uri.Scheme + ":\\" + uri.Host + ":" + uri.Port, _minioSettings.AdminConsole);
messageMQ.Key = fileName;
if (uri.Scheme + ":\\" + uri.Host + ":" + uri.Port != _minioSettings.AdminConsole)
if (uri.Scheme + "://" + uri.Host + ":" + uri.Port != _minioSettings.AdminConsole)
{
Log.Information("{Function} Copying external", "Process");
_minioHelper.RabbitExternalObject(messageMQ);
Expand Down

0 comments on commit e8d74e7

Please sign in to comment.