Redis - Sample Configuration

So I got redis setup…

This is outup of redis slave server

Replication

role:slave
master_host:10.1.35.60
master_port:6379
master_link_status:up
master_last_io_seconds_ago:1
master_sync_in_progress:0
slave_repl_offset:138695
slave_priority:100
slave_read_only:1
connected_slaves:0
master_repl_offset:0
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0

This is the output of the master

Replication

role:master
connected_slaves:1
slave0:ip=10.1.35.66,port=6379,state=online,offset=144849,lag=0
master_repl_offset:144979
repl_backlog_active:1
repl_backlog_size:1048576
repl_backlog_first_byte_offset:2
repl_backlog_histlen:144978

The problem is now is that both servers are both masters

Any ideas