diff options
author | Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-06-11 19:10:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 19:10:30 -0400 |
commit | 60ce06b02f8ece8bbbecb26cb69f9ad45e75aa16 (patch) | |
tree | a10d1bd160dd06f5b191adb1ad5cd12403790d48 /lib/compilers/java.ts | |
parent | 910d69f233414ebfb0b680e012f44ced14505016 (diff) | |
download | compiler-explorer-gh-7689.tar.gz compiler-explorer-gh-7689.zip |
Improve cache handling on the frontend, cache executions on the backend, and improve controls on the exec pane (#5111)gh-7689
Diffstat (limited to 'lib/compilers/java.ts')
-rw-r--r-- | lib/compilers/java.ts | 3 |
1 files changed, 2 insertions, 1 deletions
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 |