Apply cargo fmt and docker images fix wrong target

This commit is contained in:
Pando85 2020-05-11 16:40:44 +02:00 committed by Firstyear
parent 15bc8d4120
commit 8a4d524d54
2 changed files with 2 additions and 4 deletions

View file

@ -29,7 +29,7 @@ jobs:
strategy: strategy:
matrix: matrix:
artifact: [kanidmd, radiusd] target: [kanidmd, radiusd]
if: github.event_name == 'push' if: github.event_name == 'push'

View file

@ -566,9 +566,7 @@ impl KanidmClient {
id: &str, id: &str,
gidnumber: Option<u32>, gidnumber: Option<u32>,
) -> Result<(), ClientError> { ) -> Result<(), ClientError> {
let gx = GroupUnixExtend { let gx = GroupUnixExtend { gidnumber };
gidnumber,
};
self.perform_post_request(format!("/v1/group/{}/_unix", id).as_str(), gx) self.perform_post_request(format!("/v1/group/{}/_unix", id).as_str(), gx)
} }