Skip to content
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 @@ -82,7 +82,7 @@ internal async ValueTask<Client> GetClientAsync()
Client client;
Client checkedClient;

internal NetheriteOrchestrationServiceSettings Settings { get; private set; }
public NetheriteOrchestrationServiceSettings Settings { get; private set; }
internal uint NumberPartitions { get; private set; }
internal string PathPrefix { get; private set; }
internal string ContainerName { get; private set; }
Expand Down Expand Up @@ -252,14 +252,14 @@ public bool TryGetScalingMonitor(out ScalingMonitor monitor)
return false;
}

internal ILoadPublisherService GetLoadPublisher()
public ILoadPublisherService GetLoadPublisher()
{
return string.IsNullOrEmpty(this.Settings.LoadInformationAzureTableName) ?
new AzureBlobLoadPublisher(this.Settings.BlobStorageConnection, this.Settings.HubName, this.Settings.TaskhubParametersFilePath)
: new AzureTableLoadPublisher(this.Settings.TableStorageConnection, this.Settings.LoadInformationAzureTableName, this.Settings.HubName);
}

internal NetheriteMetricsProvider GetNetheriteMetricsProvider(ILoadPublisherService loadPublisher, ConnectionInfo eventHubsConnection)
public NetheriteMetricsProvider GetNetheriteMetricsProvider(ILoadPublisherService loadPublisher, ConnectionInfo eventHubsConnection)
{
return new NetheriteMetricsProvider(loadPublisher, eventHubsConnection);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace DurableTask.Netherite.Scaling
using System.Threading;
using System.Threading.Tasks;

class AzureBlobLoadPublisher : ILoadPublisherService
public class AzureBlobLoadPublisher : ILoadPublisherService
{
readonly string taskHubName;
readonly BlobContainerClient blobContainerClient;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace DurableTask.Netherite.Scaling
using System.Threading;
using System.Threading.Tasks;

class AzureTableLoadPublisher : ILoadPublisherService
public class AzureTableLoadPublisher : ILoadPublisherService
{
readonly TableClient table;
readonly string taskHubName;
Expand Down
2 changes: 1 addition & 1 deletion src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<MajorVersion>3</MajorVersion>
<MinorVersion>1</MinorVersion>
<PatchVersion>0</PatchVersion>
<PatchVersion>1</PatchVersion>
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyVersion>$(MajorVersion).0.0.0</AssemblyVersion>
Expand Down
Loading