mirror of https://github.com/status-im/consul.git
Ensure FSM also does not use UUIDs
This commit is contained in:
parent
f3063b25c1
commit
93f17736fd
|
@ -1,8 +1,13 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
|
||||||
grep generateUUID consul/state_store.go
|
grep generateUUID consul/state_store.go
|
||||||
RESULT=$?
|
RESULT=$?
|
||||||
|
if [ $RESULT -eq 0 ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
grep generateUUID consul/fsm.go
|
||||||
|
RESULT=$?
|
||||||
if [ $RESULT -eq 0 ]; then
|
if [ $RESULT -eq 0 ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue