Skip to content

Commit

Permalink
Fix/couldwork (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybeeelsdon authored Jul 2, 2024
1 parent d988b33 commit f26f030
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/BL/Models/ViewModels/MQFetchFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ namespace BL.Models.ViewModels
public class MQFetchFile
{
public string Url { get; set; }

public string OriginalUrl { get; set; }
public string BucketName { get; set; }
public string? Key { get; set; }
}
Expand Down
1 change: 1 addition & 0 deletions src/DARE-API/Services/ConsumeInternalMessageService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ private void Process(IMessage<int> message, MessageReceivedInfo info)


var messageMQ = new MQFetchFile();
messageMQ.OriginalUrl = sub.DockerInputLocation;
messageMQ.Url = sub.SourceCrate;
messageMQ.BucketName = sub.Project.SubmissionBucket;

Expand Down

0 comments on commit f26f030

Please sign in to comment.