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
380
-
// since we check for its existence in the statement but occasionally a race condition can make it so
381
-
// that multiple instances will try and create the schema at once. In that case we can just ignore the
382
-
// error since all we care about is that the schema exists at all.
389
+
// This generally shouldn't happen since we check for its existence in the statement but occasionally
390
+
// a race condition can make it so that multiple instances will try and create the schema at once.
391
+
// In that case we can just ignore the error since all we care about is that the schema exists at all.
383
392
this._logger.LogWarning($"Failed to create schema '{SchemaName}'. 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
433
-
// since we check for its existence in the statement but occasionally a race condition can make it so
434
-
// that multiple instances will try and create the table at once. In that case we can just ignore the
435
-
// error since all we care about is that the table exists at all.
441
+
// This generally shouldn't happen since we check for its existence in the statement but occasionally
442
+
// a race condition can make it so that multiple instances will try and create the schema at once.
443
+
// In that case we can just ignore the error since all we care about is that the schema exists at all.
436
444
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
551
-
// since we check for its existence in the statement but occasionally a race condition can make it so
552
-
// that multiple instances will try and create the table at once. In that case we can just ignore the
553
-
// error since all we care about is that the table exists at all.
558
+
// This generally shouldn't happen since we check for its existence in the statement but occasionally
559
+
// a race condition can make it so that multiple instances will try and create the schema at once.
560
+
// In that case we can just ignore the error since all we care about is that the schema exists at all.
554
561
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