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

Commit

Permalink
Fix templated route caching for passthrough api (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulkr authored May 17, 2024
1 parent bca078e commit 9e4aefe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit 9e4aefe

Please sign in to comment.