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
// Error 2714 is for an object of that name already existing in the database. This generally shouldn't happen
424
+
// since we check for its existence in the statement but occasionally a race condition can make it so
425
+
// that multiple instances will try and create the table at once. In that case we can just ignore the
426
+
// error since all we care about is that the table exists at all.
427
+
this._logger.LogWarning($"Failed to create global state table '{GlobalStateTableName}'. Exception message: {ex.Message} This is informational only, function startup will continue as normal.");
// Error 2714 is for an object of that name already existing in the database. This generally shouldn't happen
542
+
// since we check for its existence in the statement but occasionally a race condition can make it so
543
+
// that multiple instances will try and create the table at once. In that case we can just ignore the
544
+
// error since all we care about is that the table exists at all.
545
+
this._logger.LogWarning($"Failed to create global state table '{leasesTableName}'. Exception message: {ex.Message} This is informational only, function startup will continue as normal.");
0 commit comments