Skip to content

Commit

Permalink
Rysweet 4688 core doesnt use orleans (#4689)
Browse files Browse the repository at this point in the history
* removes core reps on Orleans
Co-Autohored-by: @kostapetan
  • Loading branch information
rysweet authored Dec 13, 2024
1 parent c169df8 commit cdd84ac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 29 deletions.
4 changes: 0 additions & 4 deletions dotnet/src/Microsoft.AutoGen/Agents/IHandle.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// IHandle.cs

// Copyright (c) Microsoft Corporation. All rights reserved.
// IHandle.cs

namespace Microsoft.AutoGen.Agents;
public interface IHandle
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,5 @@
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<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>
<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>
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public async Task AppHostLogsHelloAgentE2E(TestEndpoints testEndpoints)
await app.WaitForResource(ResourceName, TargetState).WaitAsync(timeout);
}
}
//sleep 5 seconds to make sure the app is running
await Task.Delay(15000);
//sleep to make sure the app is running
await Task.Delay(20000);
app.EnsureNoErrorsLogged();
app.EnsureLogContains("HelloAgents said Goodbye");
app.EnsureLogContains("Wild Hello from Python!");
Expand Down

0 comments on commit cdd84ac

Please sign in to comment.