Rysweet 4688 core doesnt use orleans (#4689)

* removes core reps on Orleans
Co-Autohored-by: @kostapetan
This commit is contained in:
Ryan Sweet 2024-12-13 10:32:17 -08:00 committed by GitHub
parent c169df8b7b
commit cdd84acd05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 29 deletions

View File

@ -1,9 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved. // Copyright (c) Microsoft Corporation. All rights reserved.
// IHandle.cs // IHandle.cs
// Copyright (c) Microsoft Corporation. All rights reserved.
// IHandle.cs
namespace Microsoft.AutoGen.Agents; namespace Microsoft.AutoGen.Agents;
public interface IHandle public interface IHandle
{ {

View File

@ -18,28 +18,5 @@
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" /> <PackageReference Include="Microsoft.Extensions.AI.Abstractions" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" /> <PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" /> <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Orleans.CodeGenerator">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Orleans.Serialization" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Orleans.Serialization.Protobuf" />
<PackageReference Include="Microsoft.Orleans.Server" />
<PackageReference Include="Microsoft.Orleans.Streaming" />
<PackageReference Include="Microsoft.Orleans.Sdk" />
<PackageReference Include="Microsoft.Orleans.Runtime" />
<PackageReference Include="Microsoft.Orleans.Persistence.Cosmos" />
<PackageReference Include="Microsoft.Orleans.Clustering.Cosmos" />
<PackageReference Include="Microsoft.Orleans.Reminders.Cosmos" />
<PackageReference Include="Microsoft.Orleans.Streaming.EventHubs" />
<PackageReference Include="Microsoft.Orleans.Reminders" />
<PackageReference Include="OrleansDashboard" />
</ItemGroup>
<PropertyGroup>
<ServerGarbageCollection>true</ServerGarbageCollection>
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
</PropertyGroup>
</Project> </Project>

View File

@ -42,8 +42,8 @@ public class HelloAppHostIntegrationTests(ITestOutputHelper testOutput)
await app.WaitForResource(ResourceName, TargetState).WaitAsync(timeout); await app.WaitForResource(ResourceName, TargetState).WaitAsync(timeout);
} }
} }
//sleep 5 seconds to make sure the app is running //sleep to make sure the app is running
await Task.Delay(15000); await Task.Delay(20000);
app.EnsureNoErrorsLogged(); app.EnsureNoErrorsLogged();
app.EnsureLogContains("HelloAgents said Goodbye"); app.EnsureLogContains("HelloAgents said Goodbye");
app.EnsureLogContains("Wild Hello from Python!"); app.EnsureLogContains("Wild Hello from Python!");