Skip to content

Commit

Permalink
increases max reconnect time to 1h
Browse files Browse the repository at this point in the history
  • Loading branch information
markpokornycos committed Apr 4, 2018
1 parent 3c1b1f2 commit d8132dd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DarklyEventSource.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "DarklyEventSource"
s.version = "3.2.0"
s.version = "3.2.1"
s.summary = "HTML5 Server-Sent Events in your Cocoa app."
s.homepage = "https://github.com/launchdarkly/ios-eventsource"
s.license = 'MIT (see LICENSE.txt)'
s.author = { "Neil Cowburn" => "[email protected]" }
s.source = { :git => "https://github.com/launchdarkly/ios-eventsource.git", :tag => '3.2.0' }
s.source = { :git => "https://github.com/launchdarkly/ios-eventsource.git", :tag => '3.2.1' }
s.source_files = 'LDEventSource', 'LDEventSource/LDEventSource.{h,m}'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
Expand Down
2 changes: 1 addition & 1 deletion LDEventSource/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<string>3.2.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion LDEventSource/LDEventSource.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

static CGFloat const ES_RETRY_INTERVAL = 1.0;
static CGFloat const ES_DEFAULT_TIMEOUT = 300.0;
static CGFloat const ES_MAX_RECONNECT_TIME = 180.0;
static CGFloat const ES_MAX_RECONNECT_TIME = 3600.0;

static NSString *const ESKeyValueDelimiter = @":";
static NSString *const LDEventSeparatorLFLF = @"\n\n";
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

target 'TargetName' do
pod 'DarklyEventSource'
pod 'DarklyEventSource', '~> 3.2.1'
end
```

Expand Down

0 comments on commit d8132dd

Please sign in to comment.