Skip to content

Commit 2f5ac56

Browse files
committed
fix lint
1 parent b3685de commit 2f5ac56

File tree

1 file changed

+1
-1
lines changed
  • pkg/epp/scheduling/framework/plugins/multi/prefix

1 file changed

+1
-1
lines changed

pkg/epp/scheduling/framework/plugins/multi/prefix/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ func hashPrompt(ctx context.Context, request *types.LLMRequest, cacheBlockSize i
286286
// Add the model to the first block hash so that different models have different hashes even with the same body.
287287
h := xxhash.New()
288288
_, _ = h.Write([]byte(request.TargetModel))
289-
if cacheSalt := request.Body.GetCacheSalt(); cacheSalt != "" {
289+
if cacheSalt := request.Body.CacheSalt(); cacheSalt != "" {
290290
_, _ = h.Write([]byte(cacheSalt))
291291
}
292292

0 commit comments

Comments
 (0)