mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-18 04:38:09 +00:00
Don't log an error if we delete a Repro and it is already missing (#2563)
This commit is contained in:
@ -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?
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user