-
Notifications
You must be signed in to change notification settings - Fork 20
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
ARSN-224: fix missing default for models imports #1931
Conversation
Hello williamlardier,My role is to assist you with the merge of this Status report is not available. |
Integration data createdI have created the integration data for the additional destination branches.
The following branches will NOT be impacted:
Follow integration pull requests if you would like to be notified of |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
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.
Seems there are a few more missing, not related to your specific issue but they'll crash as well eventually:
❯ git grep 'require.*models.*' lib/storage lib/algos
lib/storage/data/DataWrapper.js:11:const BackendInfo = require('../../models/BackendInfo');
lib/storage/metadata/MetadataWrapper.js:3:const BucketInfo = require('../../models/BucketInfo');
lib/storage/metadata/bucketclient/BucketClientInterface.js:3:const BucketInfo = require('../../../models/BucketInfo');
lib/storage/metadata/file/BucketFileInterface.js:5:const BucketInfo = require('../../../models/BucketInfo');
lib/storage/metadata/mongoclient/MongoClientInterface.js:18:const BucketInfo = require('../../../models/BucketInfo');
lib/storage/metadata/proxy/BucketdRoutes.js:4:const BucketInfo = require('../../../models/BucketInfo');
Reason: we're not migrating storage
and algos
because they're about to be moved to Armory.
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
The following reviewers are expecting changes from the author, or must review again: |
Hi @jbertran , are you up to date? Picking randomly a line from your comment, we already have the default import:
Getting this using your command:
|
As discussed in PM, it was because the Arsenal was outdated
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
I am approving this, I got a green build in Cloudserver https://eve.devsca.com/github/scality/cloudserver/#/builders/3/builds/17628 Please let me know or open a ticket if you see more required changes. |
/approve |
In the queueThe changeset has received all authorizations and has been added to the The changeset will be merged in:
The following branches will NOT be impacted:
There is no action required on your side. You will be notified here once IMPORTANT Please do not attempt to modify this pull request.
If you need this pull request to be removed from the queue, please contact a The following options are set: approve |
I have successfully merged the changeset of this pull request
The following branches have NOT changed:
Please check the status of the associated issue ARSN-224. Goodbye williamlardier. |
Fixes this in cloudserver:
Also make sure the result returned by Arsenal for the Bucket Notification Configuration is consistent with what is expected in Cloudserver tests and what was returned before.