Skip to content

removing commented code and credentials #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 3, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,14 @@ public void CreateReservedIPThenPaaSVM()
{
try
{
string reservedIpName1 = "ResrvdIP1";
string reservedIpName2 = "ResrvdIP2";
string reservedIpName1 = Utilities.GetUniqueShortName("ResrvdIP1"); ;
string reservedIpName2 = Utilities.GetUniqueShortName("ResrvdIP2"); ;
string reservedIpLabel1 = Utilities.GetUniqueShortName("ResrvdIPLbl", 5);
string reservedIpLabel2 = Utilities.GetUniqueShortName("ResrvdIPLbl", 5);
string dnsName = Utilities.GetUniqueShortName("Dns");
//string vmName = Utilities.GetUniqueShortName(vmNamePrefix);
string deploymentName = Utilities.GetUniqueShortName("Depl");
var input1 = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel1,
InUse = false,
Expand All @@ -88,7 +86,6 @@ public void CreateReservedIPThenPaaSVM()

var input2 = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel2,
InUse = false,
Expand Down Expand Up @@ -164,7 +161,6 @@ public void CreateReservedIPThenWindowsVM()
string deploymentName = Utilities.GetUniqueShortName("Depl");
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -212,7 +208,6 @@ public void CreatePaaSDeploymentAssociateAndDisassociateReservedIp()

var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -279,7 +274,6 @@ public void CreateWindowsVMThenAssociateReservedIP()
string vmName = Utilities.GetUniqueShortName(vmNamePrefix);
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -330,7 +324,6 @@ public void TestAssociateReservedIPToStageSlotIaaSFails()
string vmName = Utilities.GetUniqueShortName(vmNamePrefix);
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -375,7 +368,6 @@ public void CreateWindowsVMWithReservedIPThenDisassociateReservedIP()
string vmName = Utilities.GetUniqueShortName(vmNamePrefix);
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -427,7 +419,6 @@ public void CreateWindowsVMThenReservedExistingIP()
string deploymentName = Utilities.GetUniqueShortName("Depl");
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -479,7 +470,6 @@ public void CreateReservedIPThenLinuxVM()
string affinityGroup = Utilities.GetUniqueShortName("AffGrp");
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -534,7 +524,6 @@ public void CreateReservedIPThenWindowsQuickVM()
string affinityGroup = Utilities.GetUniqueShortName("AffGrp");
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down Expand Up @@ -581,7 +570,6 @@ public void CreateReservedIPThenLinuxQuickVM()
string affinityGroup = Utilities.GetUniqueShortName("AffGrp");
var input = new ReservedIPContext()
{
//Address = string.Empty,
DeploymentName = string.Empty,
Label = reservedIpLabel,
InUse = false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ServiceConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" serviceName="HelloWorld" osFamily="2" osVersion="*" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration">
<Role name="HelloWorld_WebRole">
<ConfigurationSettings>
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=samplesa;AccountKey=1VtQsFrdpGyY8bKCC2WF74B1lV9fBpPtxZbBj6apwFNLCm/sYTlsrCmps9TgBMykw5NiGGGwngYUzhvpECUXUQ==" />
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=test;AccountKey=test" />
</ConfigurationSettings>
<Instances count="1" />
</Role>
Expand Down