Skip to content

Commit

Permalink
Remove http status code intepretation until we have proper ones
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkensor committed Nov 12, 2023
1 parent 146123d commit 643d9b7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions src/Scripts/Game/Drivers/WebProxy/EDF_WebProxyDbDriverBase.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,6 @@ sealed class EDF_WebProxyDbDriverCallback : RestCallback
EDF_EDbOperationStatusCode statusCode;
switch (errorCode)
{
case 14:
{
statusCode = EDF_EDbOperationStatusCode.FAILURE_ID_NOT_FOUND;
break;
}

default:
{
statusCode = EDF_EDbOperationStatusCode.FAILURE_UNKNOWN;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class EDF_Test_WebProxyDbDriver_RemoveAsync_UnknownEntity_NotFound : EDF_Test_We
//------------------------------------------------------------------------------------------------
void OnResult(EDF_EDbOperationStatusCode statusCode)
{
PrintFormat("%1 OnResult: %2", ClassName(), statusCode == EDF_EDbOperationStatusCode.FAILURE_ID_NOT_FOUND);
PrintFormat("%1 OnResult: %2", ClassName(), statusCode == EDF_EDbOperationStatusCode.FAILURE_UNKNOWN);
}
}

Expand Down

0 comments on commit 643d9b7

Please sign in to comment.