File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public static async Task Run(
31
31
databaseName : "%CosmosDBDatabaseName%" ,
32
32
collectionName : "%CosmosDBCollectionName%" ,
33
33
ConnectionStringSetting = "CosmosDBConnectionString" ,
34
- SqlQuery = "select * from OrdersCreated r where r.orderProcessed = false" ) ] IEnumerable < Document > ordersCreated ,
34
+ SqlQuery = "select * from Orders r where r.orderProcessed = false" ) ] IEnumerable < Document > ordersCreated ,
35
35
[ CosmosDB (
36
36
databaseName : "%CosmosDBDatabaseName%" ,
37
37
collectionName : "%CosmosDBCollectionName%" ,
@@ -44,9 +44,9 @@ public static async Task Run(
44
44
) ] IAsyncCollector < ServiceBusMessage > ordersToProcess ,
45
45
ILogger log )
46
46
{
47
- /// This function is triggered off the change feed in CosmosDB. When
48
- /// new items are added to the orders container, it will be invoked
49
- /// so that the outbox transaction can be completed.
47
+ // This function is triggered off the change feed in CosmosDB. When
48
+ // new items are added to the orders container, it will be invoked
49
+ // so that the outbox transaction can be completed.
50
50
51
51
if ( input != null && input . Count > 0 )
52
52
{
You can’t perform that action at this time.
0 commit comments