Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Fix templated route caching for passthrough api #26

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "integrationos-domain"
description = "Shared library for IntegrationOS"
license = "GPL-3.0"
version = "4.1.4"
version = "4.1.5"
edition = "2021"
repository = "https://github.com/integration-os/integrationos-domain"

Expand Down
1 change: 1 addition & 0 deletions src/service/client/unified_destination_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1125,6 +1125,7 @@ impl UnifiedDestination {
let PlatformInfo::Api(ref mut c) = config_clone.platform_info;
let template = template_route(c.path.clone(), path.to_string());
c.path = template;
config_clone.platform_info = PlatformInfo::Api(c.clone());
Arc::new(config_clone)
}
_ => config.clone(),
Expand Down
Loading