From 60ce06b02f8ece8bbbecb26cb69f9ad45e75aa16 Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sun, 11 Jun 2023 19:10:30 -0400 Subject: Improve cache handling on the frontend, cache executions on the backend, and improve controls on the exec pane (#5111) --- lib/compilers/java.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/compilers/java.ts') diff --git a/lib/compilers/java.ts b/lib/compilers/java.ts index 320469f6e..c01940c57 100644 --- a/lib/compilers/java.ts +++ b/lib/compilers/java.ts @@ -35,6 +35,7 @@ import {logger} from '../logger.js'; import * as utils from '../utils.js'; import {JavaParser} from './argument-parsers.js'; +import {BypassCache} from '../../types/compilation/compilation.interfaces.js'; export class JavaCompiler extends BaseCompiler { static get key() { @@ -128,7 +129,7 @@ export class JavaCompiler extends BaseCompiler { } override async handleInterpreting(key, executeParameters) { - const compileResult = await this.getOrBuildExecutable(key); + const compileResult = await this.getOrBuildExecutable(key, BypassCache.None); if (compileResult.code === 0) { executeParameters.args = [ '-Xss136K', // Reduce thread stack size -- cgit v1.2.3