Skip to content

Commit

Permalink
bump zetasql versions (#938)
Browse files Browse the repository at this point in the history
* bump versions

* fix for wsl
  • Loading branch information
pgrivachev authored May 15, 2023
1 parent 47276f9 commit ba89bc5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"node": "*"
},
"dependencies": {
"@fivetrandevelopers/zetasql": "^1.11.1",
"@fivetrandevelopers/zetasql-snowflake": "^0.4.1",
"@fivetrandevelopers/zetasql": "^1.12.0",
"@fivetrandevelopers/zetasql-snowflake": "^0.5.0",
"@google-cloud/bigquery": "^6.2.0",
"async-retry": "^1.3.3",
"axios": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion server/src/ZetaSqlApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class ZetaSqlApi {
console.log(`Path in WSL: ${wslPath}`);
const stdHandler = (data: string): void => console.log(data);
new ProcessExecutor()
.execProcess(`wsl -d ${FeatureFinder.getWslUbuntuName()} "${wslPath}" ${port}`, stdHandler, stdHandler)
.execProcess(`wsl -d ${FeatureFinder.getWslUbuntuName()} "${wslPath}" 0.0.0.0 ${port}`, stdHandler, stdHandler)
.catch(e => console.log(e));
} else {
this.zetaSql.runServer(port).catch(e => console.log(e));
Expand Down

0 comments on commit ba89bc5

Please sign in to comment.