Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
cristipufu committed Aug 26, 2024
1 parent fce7013 commit 73f5ae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tunnelite.Server/HttpTunnel/HttpAppExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ await context.Response.WriteAsJsonAsync(new
deferredHttpContext.Response.StatusCode = StatusCodes.Status500InternalServerError;
await deferredHttpContext.Response.WriteAsJsonAsync(new
{
Message = "An error occurred while tunneling the request",
Message = "An error occurred while tunneling the request. The tunnel is broken, please check if the local application is online!",
});

// Complete the deferred response
Expand Down

0 comments on commit 73f5ae7

Please sign in to comment.