Skip to content

Commit 64c6b35

Browse files
committed
Fix issues
1 parent 30d9045 commit 64c6b35

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci-dgraph-integration2-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
dgraph-integration2-tests:
2525
if: github.event.pull_request.draft == false
2626
runs-on: ubuntu-latest
27-
timeout-minutes: 30
27+
timeout-minutes: 60
2828
steps:
2929
- uses: actions/checkout@v5
3030
with:

dgraphtest/load.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -503,10 +503,11 @@ func (c *LocalCluster) BulkLoad(opts BulkOpts) error {
503503
args = append(args, "-g", strings.Join(opts.GQLSchemaFiles, ","))
504504
}
505505

506-
dgraphCmdPath := os.Getenv("DGRAPH_CMD_PATH")
507-
if dgraphCmdPath == "" {
508-
dgraphCmdPath = filepath.Join(c.tempBinDir, "dgraph")
509-
}
506+
// dgraphCmdPath := os.Getenv("DGRAPH_CMD_PATH")
507+
// if dgraphCmdPath == "" {
508+
// dgraphCmdPath = filepath.Join(c.tempBinDir, "dgraph")
509+
// }
510+
510511
log.Printf("[INFO] running bulk loader with args: [%v]", strings.Join(args, " "))
511512
binaryName := "dgraph"
512513
if os.Getenv("DGRAPH_BINARY") != "" {

0 commit comments

Comments
 (0)