nat-monitor 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/nat-monitor.rb +1 -1
- data/lib/nat-monitor/version.rb +1 -1
- data/spec/lib/nat-monitor_spec.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c1ae4919442fa6c4b699e1524926c262952edfe
|
4
|
+
data.tar.gz: 808675af1c80f840aac6b0e7b724e05a4c3e9686
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6999c408824b0b25b95c74932001ab2f63de2a47d66e25c2361b5cefe6cf076a7c6c32a005472ea76d8fc0b2001038cffcb5143d37431d99b5b077250f3e266
|
7
|
+
data.tar.gz: d748ee63fccaf8875ad6951fa7634547adff383b0f34b1bbd160450f631fd875b321dbef8f3b72edfc93f15001a6bdb76bff8a11fdfbea596b2accf520378230
|
data/lib/nat-monitor.rb
CHANGED
data/lib/nat-monitor/version.rb
CHANGED
@@ -172,7 +172,9 @@ describe EtTools::NatMonitor do
|
|
172
172
|
|
173
173
|
it 'sends correct replace route command' do
|
174
174
|
expect(@nat_monitor.connection).to receive(:replace_route)
|
175
|
-
.with(@route_table_id,
|
175
|
+
.with(@route_table_id,
|
176
|
+
'0.0.0.0/0',
|
177
|
+
'InstanceId' => @my_instance_id)
|
176
178
|
.and_return true
|
177
179
|
@nat_monitor.heartbeat
|
178
180
|
end
|