Skip to content

Commit

Permalink
Merge pull request #3536 from vespa-engine/revert-3534-kkraune-patch-1
Browse files Browse the repository at this point in the history
Revert "test if app arg is needed"
  • Loading branch information
kkraune authored Dec 16, 2024
2 parents f8493a9 + 649140e commit 2b78c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feed_to_vespa.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def vespa_feed(endpoint, feed, namespace, doc_type):
splits = re.split(r'/|\.', endpoint)
app_string = splits[3] + '.' + splits[2]

process = subprocess.run(['vespa', 'feed', '-t', endpoint, feed], capture_output=True)
process = subprocess.run(['vespa', 'feed', '-a', app_string, '-t', endpoint, feed], capture_output=True)

# Print sderr if not empty
if process.stderr:
Expand Down

0 comments on commit 2b78c9b

Please sign in to comment.