File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/Provider/ParamsProvider Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ public function getTimeout(WSRequest $request): float
3737
3838 public function getLogParameterValue (string $ name , ?string $ defaultValue = null ): ?string
3939 {
40+ str_replace ('/ ' , '. ' , $ name );
4041 $ paramName = 'hb_webservice_core_async.logs. ' . $ name ;
4142
4243 $ val = $ this ->parameterBag ->has ($ paramName ) ? $ this ->parameterBag ->get ($ paramName ) : null ;
@@ -49,7 +50,7 @@ private function getParameterValueForRequest(
4950 ): array |bool |string |int |float |\UnitEnum |null {
5051 $ baseName = 'hb_webservice_core_async. ' . $ namePrefix ;
5152 $ postName = $ actionBased ? '. ' . $ request ->getCustomAction () : '' ;
52- $ name = $ baseName . $ request ->subService . $ postName ;
53+ $ name = $ baseName . ' . ' . $ request ->subService . $ postName ;
5354 if (
5455 $ request ->subService
5556 && $ this ->parameterBag ->has ($ name )
You can’t perform that action at this time.
0 commit comments