-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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 the broken sample path in API #1805
Conversation
Related change b476a84 /hold Need investigate why test doesn't catch it. /assign @numerology @hongye-sun
Sorry I'm not aware of this part of test. |
/lgtm |
@numerology All presubmit tests should fail because API server should in theory fail to start. |
With further investigation, it appears these lines didn't fully delete the pipeline's artifact/metadata GCE PD pipelines/test/deploy-pipeline.sh Line 55 in 701b90d
The PD backing metadata store is name with The API server decides if needs to load samples based on the pipelines/backend/src/apiserver/main.go Line 145 in 701b90d
Because the DB's PD is reused, the flag is still true after reinstall, thus it skipped to load the samples. |
For more context see #1805 (comment) We could remove this fix when ksonnet is deprecated.
/hold cancel |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: IronPan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Thanks for the investigation. This is really important for the test to catch the errors. |
For more context see #1805 (comment) We could remove this fix when ksonnet is deprecated.
Related change b476a84
/hold
Need investigate why test doesn't catch it.
/assign @numerology @gaoning777
This change is