Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Zhang <[email protected]>
  • Loading branch information
kevjumba committed Mar 29, 2022
1 parent fa0abf3 commit 941aea8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion go/internal/test/go_integration_test_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package test

import (
"encoding/json"
"fmt"
"log"
"os"
"os/exec"
Expand Down Expand Up @@ -125,7 +126,9 @@ func SetupFeatureRepo(basePath string) error {
}
t := time.Now()

formattedTime := t.Format(time.RFC3339)
formattedTime := fmt.Sprintf("%d-%02d-%02dT%02d:%02d:%02d",
t.Year(), t.Month(), t.Day(),
t.Hour(), t.Minute(), t.Second())
materializeCommand := exec.Command("feast", "materialize-incremental", formattedTime)
materializeCommand.Env = os.Environ()
materializeCommand.Dir = feature_repo_path
Expand Down

0 comments on commit 941aea8

Please sign in to comment.