- Notifications
You must be signed in to change notification settings - Fork925
feat: add inactivity cleanup and failure cleanup configuration fields to Template Schedule Form#7402
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
feat: add inactivity cleanup and failure cleanup configuration fields to Template Schedule Form#7402
Changes fromall commits
744e476
e6e1ec6
c049e9e
537ced7
cd6a485
6c984fa
57a9de7
07cb07c
7091fc1
e565225
3d9f6f5
abab4c8
ad37203
240f297
be512ee
8536b75
a05eb6c
0478e07
bba4722
c76a0f4
9db6b13
a2a38f0
9fa9c5b
43a2267
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -34,6 +34,7 @@ | ||
"Dsts", | ||
"embeddedpostgres", | ||
"enablements", | ||
"enterprisemeta", | ||
"errgroup", | ||
"eventsourcemock", | ||
"Failf", | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
BEGIN; | ||
ALTER TABLE ONLY templates DROP COLUMN IF EXISTS failure_ttl; | ||
ALTER TABLE ONLY templates DROP COLUMN IF EXISTS inactivity_ttl; | ||
Kira-Pilot marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
COMMIT; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
BEGIN; | ||
ALTER TABLE ONLY templates ADD COLUMN IF NOT EXISTS failure_ttl BIGINT NOT NULL DEFAULT 0; | ||
ALTER TABLE ONLY templates ADD COLUMN IF NOT EXISTS inactivity_ttl BIGINT NOT NULL DEFAULT 0; | ||
Kira-Pilot marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
COMMIT; |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.