Skip to content

Commit

Permalink
chore[avas]:go_program_path
Browse files Browse the repository at this point in the history
  • Loading branch information
fishTsai20 committed Jan 23, 2024
1 parent 637fe0b commit e0ce61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blockchainetl/jobs/exporters/indexer_item_exporter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import collections
import csv
import logging
import os
import subprocess
import sys
from datetime import datetime
Expand Down Expand Up @@ -60,8 +61,7 @@ def close(self):

def call_go(self):
start_time = datetime.now()
go_program = '../open-indexer/indexer'
# go_program = './indexer'
go_program = os.environ.get('GO_PROGRAM_PATH', './indexer')

command = [go_program, '--transactions', self.files["transaction"].name,
'--logs',
Expand Down

0 comments on commit e0ce61e

Please sign in to comment.