Schedule introspector builds close to coverage builds (#7661)

* Schedule introspector builds close to coverage builds

* Spacing out the builds
This commit is contained in:
Navidem 2022-05-02 22:45:25 -05:00 committed by GitHub
parent 2dc98d5c95
commit b22a30dbf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ VALID_PROJECT_NAME = re.compile(r'^[a-zA-Z0-9_-]+$')
DEFAULT_BUILDS_PER_DAY = 1
MAX_BUILDS_PER_DAY = 4
COVERAGE_SCHEDULE = '0 6 * * *'
INTROSPECTOR_SCHEDULE = '0 0 * * *'
INTROSPECTOR_SCHEDULE = '0 10 * * *'
FUZZING_BUILD_TOPIC = 'request-build'
COVERAGE_BUILD_TOPIC = 'request-coverage-build'
INTROSPECTOR_BUILD_TOPIC = 'request-introspector-build'

View File

@ -196,7 +196,7 @@ class TestDataSync(unittest.TestCase):
'data':
b'test1'
},
'schedule': '0 0 * * *'
'schedule': '0 10 * * *'
},
{
'name': 'projects/test-project/location/us-central1/jobs/'
@ -227,7 +227,7 @@ class TestDataSync(unittest.TestCase):
'data':
b'test2'
},
'schedule': '0 0 * * *'
'schedule': '0 10 * * *'
},
], cloud_scheduler_client.schedulers)