Skip to content

Commit

Permalink
Merge branch 'main' into support/3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Oct 24, 2023
2 parents 2daaf91 + 054bd9b commit 86ff7db
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion code/zato-server/src/zato/server/service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,7 @@ class RESTAdapter(Service):
map_response = None
get_conn_name = None
get_auth = None
get_path = None
get_path_params = None
get_method = None
get_request = None
get_headers = None
Expand Down Expand Up @@ -1619,6 +1619,11 @@ def handle(self):
_params:'strdict' = self.get_query_string(params)
params.update(_params)

# Obtain any possible path parameters
if self.get_path_params:
_params:'strdict' = self.get_path_params(params)
params.update(_params)

# The REST method may be dynamically generated
if self.get_method:
method:'str' = self.get_method()
Expand Down

0 comments on commit 86ff7db

Please sign in to comment.