fix #5

Merged
milano15662 merged 1 commits from develop into master 2022-03-23 03:25:08 +00:00
2 changed files with 3 additions and 9 deletions
Showing only changes of commit 2afc55eb5f - Show all commits

View File

@ -41,10 +41,9 @@ func NewClient(config Config) (*Client, error) {
// publishWithJetStream ... // publishWithJetStream ...
func publishWithJetStream(streamName, subject string, data []byte) (isPublished bool, err error) { func publishWithJetStream(streamName, subject string, data []byte) (isPublished bool, err error) {
var req = RequestBody{Body: data}
// Publish jet stream // Publish jet stream
if err = client.natsJetStream.Publish(streamName, subject, toBytes(req)); err != nil { if err = client.natsJetStream.Publish(streamName, subject, data); err != nil {
return return
} }

View File

@ -4,11 +4,6 @@ package appier
type Pull struct{} type Pull struct{}
// ProductUpsert ... // ProductUpsert ...
func (Pull) ProductUpsert(payload Payload) (bool, error) { func (Pull) ProductUpsert(payload []byte) (bool, error) {
return publishWithJetStream(JetStreamAppierService, SubjectPullProductUpsert, payload.Data) return publishWithJetStream(JetStreamAppierService, SubjectPullProductUpsert, payload)
}
// PingService ...
func (Pull) PingService(payload Payload) (bool, error) {
return publishWithJetStream(JetStreamAppierService, SubjectPingPullService, payload.Data)
} }