Compare commits

..

2 commits

Author SHA1 Message Date
1bf9f6a516 chore: Release 0.11.0
All checks were successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
2024-07-26 19:06:01 +01:00
3670979b3c tests: restore unlinked test file
Some checks failed
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
Rust / build (push) Failing after 1m54s
2024-07-26 18:57:43 +01:00

View file

@ -16,9 +16,10 @@ impl TryFrom<gix::Url> for RemoteUrl {
}
impl RemoteUrl {
pub fn matches(&self, other: &Self) -> bool {
tracing::debug!(host = ?self.host, fullname = ?self.fullname, token = ?self.token, "a");
tracing::debug!(host = ?other.host, fullname = ?other.fullname, token = ?other.token,"b");
tracing::debug!(host = ?self.host, user = ?self.user, fullname = ?self.fullname, token = ?self.token, "a");
tracing::debug!(host = ?other.host, user = ?other.user, fullname = ?other.fullname, token = ?other.token,"b");
self.host.eq(&other.host)
&& self.user.eq(&other.user)
&& self.fullname.eq(&other.fullname)
&& self.token.eq(&other.token)
}