Skip to content

Commit

Permalink
Merge branch 'mg_bump_sdk_to_24_09_preview' of https://github.com/mwe…
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurMa1978 committed Nov 21, 2024
2 parents b4ba461 + b094533 commit aa2ba45
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/loadtestservice/Azure.ResourceManager.LoadTesting",
"Tag": "net/loadtestservice/Azure.ResourceManager.LoadTesting_d43ab00842"
"Tag": "net/loadtestservice/Azure.ResourceManager.LoadTesting_a2783bc84d"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.3.0-beta.2 (2024-11-19)
## 1.3.0-beta.2 (2024-11-21)

### Features Added

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/servicefabricmanagedclusters/Azure.ResourceManager.ServiceFabricManagedClusters",
"Tag": "net/servicefabricmanagedclusters/Azure.ResourceManager.ServiceFabricManagedClusters_1930342013"
"Tag": "net/servicefabricmanagedclusters/Azure.ResourceManager.ServiceFabricManagedClusters_1a660306c4"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using System.Collections.Generic;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Core.TestFramework;
Expand Down Expand Up @@ -39,6 +40,7 @@ public async Task BasicClusterTestAsync()
ClientConnectionPort = 19000,
HttpGatewayConnectionPort = 19080
};
data.Tags.Add(new KeyValuePair<string, string>("SFRP.EnableDiagnosticMI", "true"));

serviceFabricManagedCluster = (await clusterCollection.CreateOrUpdateAsync(WaitUntil.Completed, clusterName, data)).Value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using Azure.ResourceManager.Resources;
using Azure.ResourceManager.ServiceFabricManagedClusters.Models;
using NUnit.Framework;
using System.Collections.Generic;

namespace Azure.ResourceManager.ServiceFabricManagedClusters.Tests.Scenario
{
Expand Down Expand Up @@ -38,6 +39,7 @@ public async Task Setup()
ClientConnectionPort = 19000,
HttpGatewayConnectionPort = 19080
};
data.Tags.Add(new KeyValuePair<string, string>("SFRP.EnableDiagnosticMI", "true"));

serviceFabricManagedCluster = (await clusterCollection.CreateOrUpdateAsync(WaitUntil.Completed, clusterName, data)).Value;
}
Expand Down

0 comments on commit aa2ba45

Please sign in to comment.