Skip to content

Commit

Permalink
moved options to Orleans.Configuration namespace for consistency with…
Browse files Browse the repository at this point in the history
… other options
  • Loading branch information
Ledjon Behluli authored and Ledjon Behluli committed Mar 1, 2024
1 parent bece332 commit 3148fac
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using System;
using Microsoft.Extensions.Options;
using Orleans.Runtime;

namespace Orleans.Runtime.Configuration.Options;
namespace Orleans.Configuration;

public sealed class ActiveRebalancingOptions
{
Expand Down
2 changes: 1 addition & 1 deletion src/Orleans.Runtime/Hosting/ActiveRebalancingExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Orleans.Configuration.Internal;
using Orleans.Placement.Rebalancing;
using Orleans.Runtime;
using Orleans.Runtime.Configuration.Options;
using Orleans.Configuration;
using Orleans.Runtime.Placement.Rebalancing;

namespace Orleans.Hosting;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
using Orleans.Concurrency;
using Orleans.Serialization.Invocation;
using Orleans.Core.Internal;
using Orleans.Runtime.Configuration.Options;
using System.Data;
using System.Diagnostics.CodeAnalysis;
using Orleans.Placement.Rebalancing;
using System.Threading;
using Orleans.Placement;
using Orleans.Internal;
using System.Collections;
using Orleans.Configuration;

namespace Orleans.Runtime.Placement.Rebalancing;

Expand Down
1 change: 0 additions & 1 deletion test/Benchmarks/Ping/PingBenchmark.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Orleans.Configuration;
using Orleans.Runtime.Configuration.Options;

namespace Benchmarks.Ping
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using Orleans.Placement;
using Orleans.Placement.Rebalancing;
using Orleans.Runtime;
using Orleans.Runtime.Configuration.Options;
using Orleans.Runtime.Placement;
using Orleans.Runtime.Placement.Rebalancing;
using Orleans.TestingHost;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Orleans.Configuration.Internal;
using Orleans.Placement;
using Orleans.Runtime;
using Orleans.Runtime.Configuration.Options;
using Orleans.Runtime.Placement;
using Orleans.Runtime.Placement.Rebalancing;
using Orleans.Streams;
Expand Down
2 changes: 1 addition & 1 deletion test/TesterInternal/ActiveRebalancingTests/OptionsTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.Extensions.Options;
using Orleans.Runtime;
using Orleans.Runtime.Configuration.Options;
using Orleans.Configuration;
using Xunit;

namespace UnitTests.ActiveRebalancingTests;
Expand Down

0 comments on commit 3148fac

Please sign in to comment.