You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the toss buildfarm, the following ping tests are failing
expecting success:
flux ping --count=1 $(hostname -s)
flux-ping: builder1-x86.ping: Function not implemented
not ok 25 - ping works with hostname
expecting success:
flux ping --count=1 "$(hostname -s)!broker"
flux-ping: invalid nodeid/host: 'builder1-x86'
not ok 26 - ping works with hostname!service
expecting success:
test_must_fail flux ping --count=1 "notmyhost!broker"
flux-ping: invalid nodeid/host: 'notmyhost'
Probably just needs the same fix applied as @chu11 in 3872d40
The text was updated successfully, but these errors were encountered:
Problem: A couple tests in `t0007-ping.t` assume short hostnames
by using $(hostname -s) as an expected value. This causes failures
when the domain is part of the hostname.
Change uses of $(hostname -s) to just $(hostname)
Fixesflux-framework#4109
In the toss buildfarm, the following
ping
tests are failingProbably just needs the same fix applied as @chu11 in
3872d40
The text was updated successfully, but these errors were encountered: