This repository was archived by the owner on Apr 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
SeleniumGridExtras/src/main/java/com/groupon/seleniumgridextras Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 40
40
import com .google .gson .GsonBuilder ;
41
41
42
42
import com .groupon .seleniumgridextras .config .RuntimeConfig ;
43
+ import com .groupon .seleniumgridextras .config .remote .ConfigPuller ;
43
44
import com .groupon .seleniumgridextras .grid .SelfHealingGrid ;
44
45
import com .groupon .seleniumgridextras .tasks .ExecuteOSTask ;
45
46
import com .groupon .seleniumgridextras .tasks .StartGrid ;
@@ -63,6 +64,7 @@ public static void main(String[] args) throws Exception {
63
64
PropertyConfigurator .configure (SeleniumGridExtras .class .getClassLoader ().getResource (filename ));
64
65
logger .info ("Loaded Grid Logger from " + filename );
65
66
67
+ new ConfigPuller ().updateFromRemote ();
66
68
RuntimeConfig .load ();
67
69
68
70
SelfHealingGrid .checkStatus (RuntimeConfig .getGridExtrasPort (), RuntimeConfig .getConfig ());
Original file line number Diff line number Diff line change @@ -125,8 +125,6 @@ public static Config load() {
125
125
config = DefaultConfig .getDefaultConfig ();
126
126
logger .debug (config );
127
127
128
- new ConfigPuller ().updateFromRemote ();
129
-
130
128
ConfigFileReader configFileObject = new ConfigFileReader (configFile );
131
129
132
130
logger .debug (configFileObject .toHashMap ());
You can’t perform that action at this time.
0 commit comments