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
|
||||
set -e
|
||||
|
||||
grep generateUUID consul/state_store.go
|
||||
RESULT=$?
|
||||
|
||||
if [ $RESULT -eq 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
grep generateUUID consul/fsm.go
|
||||
RESULT=$?
|
||||
if [ $RESULT -eq 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue