Skip to content
Merged
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 @@ -276,6 +276,7 @@ func TestPrefixPluginChatCompletionsGrowth(t *testing.T) {
},
}
plugin.PreRequest(context.Background(), req1, schedulingResult, 0)
plugin.wg.Wait()

// Second request adds assistant response and new user message (conversation grows)
req2 := &types.LLMRequest{
Expand Down Expand Up @@ -308,6 +309,7 @@ func TestPrefixPluginChatCompletionsGrowth(t *testing.T) {

// Simulate pod1 was picked again
plugin.PreRequest(context.Background(), req2, schedulingResult, 0)
plugin.wg.Wait()

// Third request continues the conversation even further
req3 := &types.LLMRequest{
Expand Down