Ensure FSM also does not use UUIDs
This commit is contained in:
parent
1deccbe074
commit
8f85c977bf
|
@ -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