Skip to content

Commit 417cff2

Browse files
committed
Update Java agent to v1.1.1 for space-in-path fix
This also changes the integration tests to start using a path with a space in for the bundled server tests in all cases, which should help spot more of these issues in future.
1 parent 645c443 commit 417cff2

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

overrides/java-agent.jar

-54 Bytes
Binary file not shown.

test/integration-test.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async function setupServerPath() {
1919
}
2020

2121
// If TEST_BUILT_TARBALL is set, test the latest built ready-to-go tarball:
22-
const tmpDir = tmp.dirSync({ unsafeCleanup: true }).name;
22+
const tmpDir = tmp.dirSync({ prefix: 'name with spaces', unsafeCleanup: true }).name;
2323
const version: string = require(path.join('..', 'package.json')).version;
2424

2525
const channel = (version.split('-')[1] || '').split('.')[0];

0 commit comments

Comments
 (0)