From 4c6830f58eed88dacb2cc482f1fa1d96675ec72a Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 9 Jul 2024 13:42:20 -0400 Subject: [PATCH] fix hyphen --- www-api/app/Controllers/WrenchJobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www-api/app/Controllers/WrenchJobs.php b/www-api/app/Controllers/WrenchJobs.php index 7cf83389..5655142d 100644 --- a/www-api/app/Controllers/WrenchJobs.php +++ b/www-api/app/Controllers/WrenchJobs.php @@ -108,7 +108,7 @@ class WrenchJobs extends BaseController if ( isset($out['internal_return']) && $out["internal_return"] > 0 && isset( $out['offer_code']) ){ - $endpoint = "INTEREST_MSG_".$in["offer_code"]."-". $out["member_id"]; + $endpoint = "INTEREST_MSG-".$in["offer_code"]."-". $out["member_id"]; log_message('critical', "***** ***** WrenchJobs::sendJobInterest INTEREST_MSG_ = ".$endpoint ); $this->saveCache($endpoint,$out,25000); $local_url = "http://".$this->micro_service_net1.":3030/eventInterest";