Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/re.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('../reverse_engineering/api');
2 changes: 1 addition & 1 deletion forward_engineering/helpers/applyToInstanceHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const execute = async (bigquery, query, location) => {
const applyToInstance = async (connectionInfo, logger, app) => {
const _ = app.require('lodash');
const async = app.require('async');
const connection = connectionHelper.connect(connectionInfo);
const connection = await connectionHelper.connect(connectionInfo);
const dataLocation = connectionInfo.containerData?.[0]?.dataLocation;
const location = dataLocation === 'default' ? '' : dataLocation;

Expand Down
Loading