Changes between Initial Version and Version 1 of Ticket #28856, comment 4


Ignore:
Timestamp:
Nov 28, 2017, 7:26:38 PM (6 years ago)
Author:
Morgan Wahl

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28856, comment 4

    initial v1  
    11Thanks for looking at this Simon.
    22
    3 I should've been a bit clearer about the problem: on the instance return from `refresh_from_db`, *every access of the GFK attribute* produces a *different instance* of the related object. (I tried to show that with the `id(ref.obj) == id(ref.obj)` line).
     3I should've been a bit clearer about the problem: on the instance returned from `refresh_from_db`, **every access of the GFK attribute** produces a **different instance** of the related object. (I tried to show that with the `id(ref.obj) == id(ref.obj)` line).
    44
    55I called `refresh_from_db` just to simulate a real-world situation where the row backing the `ref` instance here is created at some point, and at some later point a new model instance is instantiated for that row.
Back to Top