Skip to content

Commit

Permalink
fix auth provider
Browse files Browse the repository at this point in the history
  • Loading branch information
hainv-infragistics committed Dec 12, 2024
1 parent bf2c1fc commit 475f03f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/Sandbox/Reveal/AuthenticationProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Sandbox.RevealSDK
{
internal class AuthenticationProvider : IRVAuthenticationProvider
{
public async Task<IRVDataSourceCredential> ResolveCredentialsAsync(RVDashboardDataSource dataSource)
public Task<IRVDataSourceCredential> ResolveCredentialsAsync(RVDashboardDataSource dataSource)
{
IRVDataSourceCredential userCredential = null;
if (dataSource is RVAzureSqlDataSource)
Expand Down Expand Up @@ -106,7 +106,7 @@ public async Task<IRVDataSourceCredential> ResolveCredentialsAsync(RVDashboardDa

}

return userCredential;
return Task.FromResult(userCredential);
}

internal string RetrieveGoogleDriveBearerToken()
Expand Down

0 comments on commit 475f03f

Please sign in to comment.