54 lines
2.3 KiB
Diff
54 lines
2.3 KiB
Diff
|
From 8c19d5ac3d5731750c935e1e23e9f4add49bff48 Mon Sep 17 00:00:00 2001
|
||
|
From: Link Dupont <link@sub-pop.net>
|
||
|
Date: Tue, 24 Oct 2023 20:45:45 -0400
|
||
|
Subject: [PATCH] refactor: downgrade yggdrasil version to 0.4.1
|
||
|
|
||
|
'latest' contains additional changes to the worker package that aren't
|
||
|
released in a tagged version yet.
|
||
|
---
|
||
|
go.mod | 2 +-
|
||
|
go.sum | 4 ++--
|
||
|
main.go | 1 -
|
||
|
3 files changed, 3 insertions(+), 4 deletions(-)
|
||
|
|
||
|
diff --git a/go.mod b/go.mod
|
||
|
index 683d9d2..95a3e2a 100644
|
||
|
--- a/go.mod
|
||
|
+++ b/go.mod
|
||
|
@@ -6,7 +6,7 @@ require (
|
||
|
git.sr.ht/~spc/go-log v0.0.0-20210611184941-ce2f05edb627
|
||
|
github.com/google/uuid v1.3.1
|
||
|
github.com/peterbourgon/ff/v3 v3.1.0
|
||
|
- github.com/redhatinsights/yggdrasil v0.0.0-20231011123719-5130298ed3ac
|
||
|
+ github.com/redhatinsights/yggdrasil v0.0.0-20230918163727-97cd578cc7c6
|
||
|
github.com/sgreben/flagvar v1.10.1
|
||
|
github.com/zcalusic/sysinfo v1.0.2
|
||
|
)
|
||
|
diff --git a/go.sum b/go.sum
|
||
|
index 6420143..5b3b778 100644
|
||
|
--- a/go.sum
|
||
|
+++ b/go.sum
|
||
|
@@ -13,8 +13,8 @@ github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhEC
|
||
|
github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
|
||
|
github.com/peterbourgon/ff/v3 v3.1.0 h1:5JAeDK5j/zhKFjyHEZQXwXBoDijERaos10RE+xamOsY=
|
||
|
github.com/peterbourgon/ff/v3 v3.1.0/go.mod h1:XNJLY8EIl6MjMVjBS4F0+G0LYoAqs0DTa4rmHHukKDE=
|
||
|
-github.com/redhatinsights/yggdrasil v0.0.0-20231011123719-5130298ed3ac h1:rqRkjhJWxnNmmxCjxal5PrGuHtp93OCZn1PHPdQMCDQ=
|
||
|
-github.com/redhatinsights/yggdrasil v0.0.0-20231011123719-5130298ed3ac/go.mod h1:Rwya3pQvxCNI/2bjNQ9N6cHTMd2YKrRCJ2sENRawoBg=
|
||
|
+github.com/redhatinsights/yggdrasil v0.0.0-20230918163727-97cd578cc7c6 h1:YLX/bTYS5/BwZt7vw8vIAr3vqM8tioJr3vajhSlCpzg=
|
||
|
+github.com/redhatinsights/yggdrasil v0.0.0-20230918163727-97cd578cc7c6/go.mod h1:Rwya3pQvxCNI/2bjNQ9N6cHTMd2YKrRCJ2sENRawoBg=
|
||
|
github.com/sgreben/flagvar v1.10.1 h1:ukN3zqVj9T9U7CiKG6owmejxswJYMbAg9Mxkhi1B4tw=
|
||
|
github.com/sgreben/flagvar v1.10.1/go.mod h1:AxDmbFDIxZ4dHj2zg8LxuJn5CSwSS28iY/Wy56e+nhI=
|
||
|
github.com/zcalusic/sysinfo v1.0.2 h1:nwTTo2a+WQ0NXwo0BGRojOJvJ/5XKvQih+2RrtWqfxc=
|
||
|
diff --git a/main.go b/main.go
|
||
|
index 719f304..280e7ce 100644
|
||
|
--- a/main.go
|
||
|
+++ b/main.go
|
||
|
@@ -84,7 +84,6 @@ func main() {
|
||
|
"package_manager",
|
||
|
false,
|
||
|
map[string]string{"version": Version},
|
||
|
- nil,
|
||
|
dataRx,
|
||
|
nil,
|
||
|
)
|