Skip to content

Commit

Permalink
Merge pull request #9 from atifaziz/fix-return-indent
Browse files Browse the repository at this point in the history
Fix code indentation issues
  • Loading branch information
dlepow authored Oct 13, 2020
2 parents ae87e74 + 403aefb commit 40af688
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions BatchDotnetTutorialFfmpeg/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ private static async Task CreatePoolIfNotExistAsync(BatchClient batchClient, str
{
new ApplicationPackageReference
{
ApplicationId = appPackageId,
Version = appPackageVersion
ApplicationId = appPackageId,
Version = appPackageVersion
}
};

Expand Down Expand Up @@ -347,14 +347,13 @@ private static async Task CreatePoolIfNotExistAsync(BatchClient batchClient, str
/// <param name="poolId">ID of the CloudPool object in which to create the job.</param>
private static async Task CreateJobAsync(BatchClient batchClient, string jobId, string poolId)
{

Console.WriteLine("Creating job [{0}]...", jobId);
Console.WriteLine("Creating job [{0}]...", jobId);

CloudJob job = batchClient.JobOperations.CreateJob();
job.Id = jobId;
job.PoolInformation = new PoolInformation { PoolId = poolId };
CloudJob job = batchClient.JobOperations.CreateJob();
job.Id = jobId;
job.PoolInformation = new PoolInformation { PoolId = poolId };

await job.CommitAsync();
await job.CommitAsync();
}


Expand Down Expand Up @@ -475,7 +474,8 @@ private static async Task<bool> MonitorTasks(BatchClient batchClient, string job
{
Console.WriteLine(successMessage);
}
return allTasksSuccessful;

return allTasksSuccessful;
}
}
}

0 comments on commit 40af688

Please sign in to comment.