You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when Tracker.update is run, a new ref is created regardless of whether there is a change or not and a diff is generated.
e.g.
iex>Phoenix.Tracker.update(MyTracker,self(),"lobby",u.id,fnmeta->Map.put(meta,:away,true)end)# Since the same values are set, there is no change in meta, but a diff is reported.iex>Phoenix.Tracker.update(MyTracker,self(),"lobby",u.id,fnmeta->Map.put(meta,:away,true)end)
What about making a change or adding an option to suppress this?
If this suggestion is acceptable, I will create a patch.
The text was updated successfully, but these errors were encountered:
Currently, when Tracker.update is run, a new ref is created regardless of whether there is a change or not and a diff is generated.
e.g.
What about making a change or adding an option to suppress this?
If this suggestion is acceptable, I will create a patch.
The text was updated successfully, but these errors were encountered: