Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix topicId typo (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
xmariachi authored Mar 22, 2024
1 parent 5c9d4b8 commit a586127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allora-inference-function/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if (envVars) {
if (rs == true) {
const SEP = "\r\n";
let buf = new Array<u8>(1024);
let req = `{"arguments":["${environmentValue.toString()}"], "topicId":"${envTopicId}"}`;
let req = `{"arguments":["${environmentValue.toString()}"], "topicid":"${envTopicId}"}`;
let req_len = req.length;
let head = `${req_len}${SEP}`;
command.stdinWriteString(head);
Expand Down

0 comments on commit a586127

Please sign in to comment.