Skip to content

Commit

Permalink
Fix deploy
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
Boldizsar Mezei committed Oct 25, 2023
1 parent eb2a1e6 commit a77c280
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
3 changes: 3 additions & 0 deletions packages/functions/deploy.script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ Object.entries({
--allow-unauthenticated \\
--ingress=internal-and-cloud-load-balancing \\
`;
if (options?.region) {
command += ` --region=${options.region} \\\n`;
}
if (options?.timeoutSeconds) {
command += ` --timeout=${options.timeoutSeconds} \\\n`;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,7 @@ describe('Award tangle request', () => {

await wait(async () => {
const snap = await creditQuery.get<Transaction>();
return (
snap.length === 2 &&
snap.reduce((acc, act) => acc && (act.payload?.walletReference?.confirmed || false), true)
);
return snap.length === 2;
});
snap = await creditQuery.get<Transaction>();
credit = snap.find((d) => !isEmpty(d.payload?.response?.badges))!;
Expand Down
6 changes: 3 additions & 3 deletions packages/interfaces/src/functions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ export enum WEN_FUNC {

uploadFile = 'uploadfile',

createProject = 'createProject',
deactivateProject = 'deactivateProject',
createProjetApiKey = 'createProjetApiKey',
createProject = 'createproject',
deactivateProject = 'deactivateproject',
createProjetApiKey = 'createprojetapikey',

stamp = 'stamp',
}
Expand Down

0 comments on commit a77c280

Please sign in to comment.