Skip to content

Commit

Permalink
Added dev changes
Browse files Browse the repository at this point in the history
Signed-off-by: Joss Sparkes <joss.sparkes@gmail.com>
  • Loading branch information
RemakingEden committed Jul 15, 2022
1 parent e72c28a commit d306260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public async Task<string> GetAnyValueAsync(string keyId, string payloadId, strin
Guard.Against.NullOrWhiteSpace(payloadId);
Guard.Against.NullOrWhiteSpace(bucketId);

var path = $"{payloadId}\\dcm";
var path = $"{payloadId}/dcm";
var listOfFiles = await _storageService.ListObjectsAsync(bucketId, path, true);
var listOfJsonFiles = listOfFiles.Where(file => file.Filename.EndsWith(".json")).ToList();
var fileCount = listOfJsonFiles.Count;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void ThenICanSeeTheStatusOfTheTaskIsSucceeded()
updatedWorkflowInstance = MongoClient.GetWorkflowInstanceById(DataHelper.TaskUpdateEvent.WorkflowInstanceId);
Thread.Sleep(1000);
counter++;
if (counter == 25)
if (counter == 10)
{
throw new Exception("Task Update Status did not complete in sufficient time.");
}
Expand Down

0 comments on commit d306260

Please sign in to comment.