Skip to content

Commit

Permalink
GSF.TimeSeries: Fixed error parsing Device.UniqueID GUIDs from publis…
Browse files Browse the repository at this point in the history
…her data set during metadata synchronization.
  • Loading branch information
StephenCWills committed Aug 24, 2020
1 parent 0769d9f commit 306da00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3849,7 +3849,7 @@ protected virtual void SynchronizeMetadata()
int accessID = 0;

List<Guid> uniqueIDs = deviceRows
.Select(deviceRow => database.Guid(deviceRow, "UniqueID"))
.Select(deviceRow => Guid.Parse(deviceRow.Field<object>("UniqueID").ToString()))
.ToList();

// Remove any device records associated with this subscriber that no longer exist in the meta-data
Expand Down

0 comments on commit 306da00

Please sign in to comment.