Skip to content

Commit fa84622

Browse files
committed
fix missed 2017-latest version
1 parent 0e6d0cb commit fa84622

File tree

2 files changed

+2
-2
lines changed
  • packages

2 files changed

+2
-2
lines changed

packages/cubejs-schema-compiler/test/integration/mssql/MSSqlDbRunner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class MSSqlDbRunner extends BaseDbRunner {
111111
}
112112

113113
async containerLazyInit() {
114-
const version = process.env.TEST_MSSQL_VERSION || '2017-latest';
114+
const version = process.env.TEST_MSSQL_VERSION || '2019-latest';
115115

116116
return new GenericContainer(`mcr.microsoft.com/mssql/server:${version}`)
117117
.withEnvironment({

packages/cubejs-testing-shared/src/db-container-runners/mssql.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { DbRunnerAbstract, DBRunnerContainerOptions } from './db-runner.abstract
44

55
export class MssqlDbRunner extends DbRunnerAbstract {
66
public static startContainer(options: DBRunnerContainerOptions) {
7-
const version = process.env.TEST_MSSQL_VERSION || options.version || '2017-latest';
7+
const version = process.env.TEST_MSSQL_VERSION || options.version || '2019-latest';
88

99
const container = new GenericContainer(`mcr.microsoft.com/mssql/server:${version}`)
1010
.withEnvironment({

0 commit comments

Comments
 (0)