Skip to content

Commit

Permalink
fix: enable overwrite
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaansehgal99 committed Mar 4, 2025
1 parent f3502a8 commit 0cf5024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/rage2e/rag_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ func createAndValidatePersistPod(ragengineObj *kaitov1alpha1.RAGEngine, expected
func createAndValidateLoadPod(ragengineObj *kaitov1alpha1.RAGEngine, expectedLoadResult string) error {
podName := "load-pod"
By("Creating Load Pod", func() {
curlCommand := `curl -X POST ` + ragengineObj.Name + `:80/load/kaito`
curlCommand := `curl -X POST ` + ragengineObj.Name + `:80/load/kaito?overwrite=True`
pod := GenerateCURLPodManifest(podName, curlCommand, ragengineObj.Namespace)
Eventually(func() error {
return utils.TestingCluster.KubeClient.Create(ctx, pod, &client.CreateOptions{})
Expand Down

0 comments on commit 0cf5024

Please sign in to comment.