Golang | Pulsar Functions Runtime Death Exception #18649
|
I am getting the below error while running a pulsar function created using GO SDK. Function Container is dead with following exception. Restarting. |
Replies: 2 comments 1 reply
|
This is unfortunately a pretty generic response. Debugging pulsar function crashes in go can be kind of a pain, especially if they happen before |
|
It was just the build issue. I ran the below command before the go build command & it fixed my issue. $Env:GOOS = "linux"; $Env:GOARCH = "amd64" |
It was just the build issue.
I ran the below command before the go build command & it fixed my issue.
$Env:GOOS = "linux"; $Env:GOARCH = "amd64"