mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-03 12:08:31 +00:00
Increase timeout in workflow definition resource test
This commit is contained in:
parent
cf559c4fe3
commit
f44537bd5b
@ -1406,4 +1406,4 @@ SET json = JSON_SET(json, '$.serviceType', 'MicroStrategy')
|
||||
WHERE JSON_UNQUOTE(JSON_EXTRACT(json, '$.serviceType')) = 'Mstr';
|
||||
|
||||
-- Increase Flowable ACTIVITY_ID_ column size to support longer user-defined workflow node names
|
||||
ALTER TABLE ACT_RU_EVENT_SUBSCR ALTER COLUMN ACTIVITY_ID_ TYPE varchar(255);
|
||||
ALTER TABLE ACT_RU_EVENT_SUBSCR MODIFY ACTIVITY_ID_ varchar(255);
|
||||
@ -5019,8 +5019,8 @@ public class WorkflowDefinitionResourceTest extends OpenMetadataApplicationTest
|
||||
// Verify that the dataProduct status was set to "Approved" by the workflow
|
||||
LOG.info("Verifying dataProduct status was auto-approved...");
|
||||
await()
|
||||
.atMost(Duration.ofSeconds(60))
|
||||
.pollInterval(Duration.ofSeconds(2))
|
||||
.atMost(Duration.ofSeconds(120))
|
||||
.pollInterval(Duration.ofSeconds(1))
|
||||
.pollDelay(Duration.ofMillis(500))
|
||||
.until(
|
||||
() -> {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user