Skip to content

Commit b8fe8d9

Browse files
author
Alan Quillin
committed
Fixed issue with the API key creds containing double quotes at begining and end
1 parent 05eb3d8 commit b8fe8d9

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/corelib/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("openstack.net")]
9-
[assembly: AssemblyDescription("")]
9+
[assembly: AssemblyDescription("openstack.net Build for RackConnect")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("openstack.net")]
@@ -32,8 +32,8 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.2.2")]
36-
[assembly: AssemblyFileVersion("1.0.2.2")]
35+
[assembly: AssemblyVersion("1.0.2.3")]
36+
[assembly: AssemblyFileVersion("1.0.2.3")]
3737

3838
[assembly: InternalsVisibleTo("OpenStackNet.Testing.Integration")]
3939
[assembly: InternalsVisibleTo("OpenStackNet.Testing.Unit")]

src/corelib/Providers/Rackspace/GeographicalIdentityProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ public UserCredential[] ListUserCredentials(CloudIdentity identity, string userI
143143
creds.Add(new UserCredential
144144
{
145145
Name = property.Name,
146-
APIKey = cred["apiKey"].ToString(),
147-
Username = cred["username"].ToString()
146+
APIKey = cred["apiKey"].ToString().Replace("\"", string.Empty),
147+
Username = cred["username"].ToString().Replace("\"", string.Empty),
148148
});
149149
}
150150

0 commit comments

Comments
 (0)