chore(server): warn if object hash check is disabled

This commit is contained in:
Miodec 2024-08-22 14:21:53 +02:00
parent a53d60207c
commit 38e0d50885

View file

@ -218,6 +218,8 @@ export async function addResult(
const status = MonkeyStatusCodes.RESULT_HASH_INVALID;
throw new MonkeyError(status.code, "Incorrect result hash");
}
} else {
Logger.warning("Object hash check is disabled, skipping hash check");
}
if (completedEvent.funbox) {