-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(automate): automate module multi region #3531
base: main
Are you sure you want to change the base?
Conversation
…com:specklesystems/speckle-server into chuck/web-2150-automate-module-multi-region
…chuck/web-2150-automate-module-multi-region
@@ -21,27 +19,30 @@ import { Application } from 'express' | |||
|
|||
export default (app: Application) => { | |||
app.get( | |||
'/api/automate/automations/:automationId/runs/:runId/logs', | |||
'/api/v1/projects/:projectId/automations/:automationId/runs/:runId/logs', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it fine breaking this API?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, its only the frontend, that uses this api and that should have been updated in this pr right @cdriesler?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes has been adjusted to reflect this 👍
packages/server/package.json
Outdated
@@ -22,7 +22,7 @@ | |||
"build:clean": "rimraf ./dist && yarn build", | |||
"dev:clean": "yarn build:clean && yarn dev", | |||
"dev:server:test": "cross-env DISABLE_NOTIFICATIONS_CONSUMPTION=true NODE_ENV=test LOG_LEVEL=silent LOG_PRETTY=true node ./bin/ts-www", | |||
"test": "cross-env NODE_ENV=test LOG_LEVEL=silent LOG_PRETTY=true mocha", | |||
"test": "cross-env NODE_ENV=test LOG_PRETTY=true mocha", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did you remove the LOG_LEVEL=silent?
Description & motivation
Changes:
how to count automations a function is used in (requires counting in all regions) (or just deleting this capability?)how to find project based on function run id (status reporting from automate)reportFunctionRunStatus
mutation, depends on following changes:Confirmed triggers work, automations can be queried, and functions/reconciler can report results with the user-facing api changes.