-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[BUGFIX release] Do not register the service store when it has already been registered #3460
[BUGFIX release] Do not register the service store when it has already been registered #3460
Conversation
Hi @ppcano. Do you mind sharing a little more info about your usecase? In Ember Data 1.13 the supported way to define a custom |
@bmac, my use case is that we are NOT still using I know the ED/EM position and understand/agree if this change is not included. I wanted to share our specific case. |
That seems reasonable @ppcano. Do you mind adding a test for this functionality? Here is an existing test that uses an data/packages/ember-data/tests/integration/application-test.js Lines 154 to 167 in 9022250
|
b5a081e
to
c71c525
Compare
@bmac, done. |
Awesome. Do you mind also updating the commit message to start with [BUGFIX release] so we can make sure this is included in the next patch release for Ember Data 1.13? |
c71c525
to
3c96368
Compare
Commit and pull request title changed. |
Thanks |
…ration [BUGFIX release] Do not register the service store when it has already been registered
The following change remove the need of the
service:store
registration after thestore
initializer like:Now, the
service:store
could be registered either before or after the store initializer.