Skip to content

Commit 364e04a

Browse files
committed
fix issue with mycelium-ip
1 parent 2981284 commit 364e04a

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.github/workflows/publish.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,3 @@ jobs:
9191
user: tf-zos
9292
name: development
9393
target: tf-autobuilder/${{ steps.tag.outputs.reference }}
94-
# this is only here until devnet is updated for the first
95-
# time then this can be safely deleted
96-
# compatibility with old release
97-
# this is needed so old machines that is already running on devnet
98-
# gets the new code to be able to use the new release tag
99-
- name: Crosslink flist (development)
100-
if: success() && github.ref == 'refs/heads/main'
101-
uses: threefoldtech/publish-flist@master
102-
with:
103-
token: ${{ secrets.HUB_JWT }}
104-
action: crosslink
105-
user: tf-zos
106-
name: zos:development-3:latest.flist
107-
target: tf-autobuilder/zos:${{ steps.version.outputs.version }}.flist

pkg/gridtypes/zos/zmachine.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ func (r *ZMachineResult) UnmarshalJSON(data []byte) error {
362362
IP string `json:"ip"`
363363
YggIP string `json:"ygg_ip"`
364364
PlanetaryIP string `json:"planetary_ip"`
365+
MyceliumIP string `json:"mycelium_ip"`
365366
ConsoleURL string `json:"console_url"`
366367
}
367368

@@ -375,6 +376,7 @@ func (r *ZMachineResult) UnmarshalJSON(data []byte) error {
375376
if deprecated.YggIP != "" {
376377
r.PlanetaryIP = deprecated.YggIP
377378
}
379+
r.MyceliumIP = deprecated.MyceliumIP
378380
r.ConsoleURL = deprecated.ConsoleURL
379381

380382
return nil

0 commit comments

Comments
 (0)