Skip to content

Commit e77799c

Browse files
committed
INC-240 - minor fix
1 parent 40a1f84 commit e77799c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

helix_fhir_client_sdk/queue/request_queue_mixin.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ async def _get_with_session_async( # type:ignore[override]
142142
f"{key}:{value}" for key, value in response.response_headers.items()
143143
]
144144
await FhirResponseProcessor.log_response(
145-
full_url=full_url,
145+
full_url=next_url,
146146
response_status=response.status,
147147
client_id=self._client_id,
148148
internal_logger=self._internal_logger,
@@ -162,7 +162,7 @@ async def _get_with_session_async( # type:ignore[override]
162162
response=response,
163163
logger=self._logger,
164164
resources_json=resources_json,
165-
full_url=full_url,
165+
full_url=next_url,
166166
request_id=request_id,
167167
resource=resource_type or self._resource,
168168
id_=self._id,
@@ -181,7 +181,7 @@ async def _get_with_session_async( # type:ignore[override]
181181
raise FhirSenderException(
182182
request_id=request_id,
183183
exception=ex,
184-
url=full_url,
184+
url=next_url,
185185
headers=headers,
186186
json_data="",
187187
variables=FhirClientLogger.get_variables_to_log(vars(self)),

0 commit comments

Comments
 (0)