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

feat: Add support for multiple ADM endpoints #346

Merged
merged 27 commits into from
Feb 8, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8a1ccca
chore: Update to edition 2021
jrconlin Jan 18, 2022
8d3015a
feat: Add support for multiple ADM endpoints
jrconlin Jan 19, 2022
a7f5688
f int test
jrconlin Jan 20, 2022
bc8b4ee
f use default values if no mobile value present
jrconlin Jan 20, 2022
ce9b5e5
f r's
jrconlin Jan 24, 2022
d1fae94
f Update to address RUSTSEC-2021-0131, RUSTSEC-2022-0006
jrconlin Jan 25, 2022
5013be6
f remove fixed CVE from audit.toml
jrconlin Jan 25, 2022
d95c4a6
f add tablet to mobile types
jrconlin Jan 25, 2022
63fa1d2
f correctly(?) identify iPad firefox UA
jrconlin Jan 25, 2022
4b1f83a
f cargo update
jrconlin Jan 25, 2022
3894bdc
f r's
jrconlin Jan 26, 2022
da012bd
f fix integration tests for tablet.
jrconlin Jan 26, 2022
1d3e3ad
f remove position field
jrconlin Jan 26, 2022
e22a970
f fix up integration testing
jrconlin Jan 26, 2022
7bfc226
f r's
jrconlin Jan 27, 2022
874e97e
f fix documentation
jrconlin Jan 27, 2022
0e3b7f9
f fix tests
jrconlin Feb 1, 2022
b479b99
f update contile-integration-tests to latest version
jrconlin Feb 1, 2022
9b65beb
f fix docker
jrconlin Feb 2, 2022
70580e1
f cargo update
jrconlin Feb 2, 2022
0f3844f
f fix macos UA to not be windows
jrconlin Feb 2, 2022
63739c9
Merge branch 'main' of github.com:mozilla-services/contile into feat/…
jrconlin Feb 2, 2022
3bd8b12
Merge branch 'main' into feat/mobile-endpoint
hackebrot Feb 3, 2022
b5586d8
Merge branch 'main' into feat/mobile-endpoint
jrconlin Feb 4, 2022
3c74d91
Merge branch 'main' of github.com:mozilla-services/contile into feat/…
jrconlin Feb 4, 2022
689b26d
Merge branch 'feat/mobile-endpoint' of github.com:mozilla-services/co…
jrconlin Feb 4, 2022
478fa01
f r's
jrconlin Feb 7, 2022
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
Prev Previous commit
Next Next commit
f r's
  • Loading branch information
jrconlin committed Jan 27, 2022
commit 7bfc226f6abf1d10272e90e4e6edabeda9441542
2 changes: 1 addition & 1 deletion src/adm/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ impl TryFrom<&mut Settings> for AdmFilterSettings {
if settings.adm_partner_id.is_none() {
return Err(ConfigError::Message(format!(
"Missing argument {}",
"partner_id"
"adm_partner_id"
)));
}
if settings.adm_settings.is_empty() {
Expand Down