Use io.SeekStart instead of deprecated os.SEEK_SET

This commit is contained in:
Oscar Utbult 2018-02-25 23:11:40 +01:00
parent 9cf5350590
commit 7434cd0a81
2 changed files with 5 additions and 5 deletions

View File

@ -83,7 +83,7 @@ func (s *LocalState) WriteState(state *terraform.State) error {
s.state.Serial = s.readState.Serial
}
if _, err := s.stateFileOut.Seek(0, os.SEEK_SET); err != nil {
if _, err := s.stateFileOut.Seek(0, io.SeekStart); err != nil {
return err
}
if err := s.stateFileOut.Truncate(0); err != nil {
@ -144,7 +144,7 @@ func (s *LocalState) RefreshState() error {
}
// we have a state file, make sure we're at the start
s.stateFileOut.Seek(0, os.SEEK_SET)
s.stateFileOut.Seek(0, io.SeekStart)
reader = s.stateFileOut
}

View File

@ -3,7 +3,7 @@
package state
import (
"os"
"io"
"syscall"
)
@ -12,7 +12,7 @@ import (
func (s *LocalState) lock() error {
flock := &syscall.Flock_t{
Type: syscall.F_RDLCK | syscall.F_WRLCK,
Whence: int16(os.SEEK_SET),
Whence: int16(io.SeekStart),
Start: 0,
Len: 0,
}
@ -24,7 +24,7 @@ func (s *LocalState) lock() error {
func (s *LocalState) unlock() error {
flock := &syscall.Flock_t{
Type: syscall.F_UNLCK,
Whence: int16(os.SEEK_SET),
Whence: int16(io.SeekStart),
Start: 0,
Len: 0,
}