Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
chkeita committed Oct 31, 2023
1 parent c61f1e8 commit 68c60e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ApiService/ApiService/onefuzzlib/JobCrashReported.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public JobCrashReportedOperations(ILogger<JobCrashReportedOperations> logTracer,
}

public async Task<bool> CrashReported(Guid jobId) {
return await QueryAsync(Query.RowKey(jobId.ToString())).AnyAsync();
return await QueryAsync(Query.PartitionKey(jobId.ToString())).AnyAsync();
}

public async Task<OneFuzzResultVoid> ReportCrash(Guid jobId, Guid taskId) {
Expand Down

0 comments on commit 68c60e3

Please sign in to comment.