Don't log an error if we delete a Repro and it is already missing (#2563)

This commit is contained in:
George Pollard
2022-10-27 11:04:42 +13:00
committed by GitHub
parent 81e4b1542d
commit 9299357133
9 changed files with 41 additions and 29 deletions

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Net;
using Microsoft.OneFuzz.Service;
using Xunit.Abstractions;
@ -48,7 +49,7 @@ sealed class TestLogTracer : ILogTracer {
_output.WriteLine($"[Warning] {message.ToString()}");
}
public ILogTracer WithHttpStatus((int, string) status) {
public ILogTracer WithHttpStatus((HttpStatusCode Status, string Reason) result) {
return this; // TODO?
}