Skip to content
Snippets Groups Projects
Commit 688148fd authored by John Cowen's avatar John Cowen
Browse files

ui: Replaces destroyRecord with unloadRecord for KV 404's

Just because Consul gives us a 404 this doesn't guarantee the KV doesn't
exist, it doesn't even mean we don't have access to it. Furthermore we
should never destroyRecord's without user interaction (therefore only via the
repo.delete method).

This switches destroyRecord to unloadRecord which performs the
additional legwork to keep ember-data in sync with the actual truth.

unloadRecord unloads the record from ember-data rather than sending an API
delete request, which would have been the intent here.
parent 077d70ff
No related merge requests found
......@@ -59,7 +59,7 @@ export default RepositoryService.extend({
const id = JSON.stringify([dc, key]);
const record = get(this, 'store').peekRecord(this.getModelName(), id);
if (record) {
record.destroyRecord();
record.unloadRecord();
}
}
throw e;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment