Skip to content

Commit

Permalink
OOZIE-2565 [Oozie web Console] Make the timezones in settings tab to …
Browse files Browse the repository at this point in the history
…be sorted by default (meetchandan via jaydeepvishwakarma)
  • Loading branch information
jvishwakarma committed Jul 30, 2016
1 parent 9650a72 commit 4669d29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions release-log.txt
@@ -1,5 +1,6 @@
-- Oozie 4.3.0 release (trunk - unreleased)

OOZIE-2565 [Oozie web Console] Make the timezones in settings tab to be sorted by default (meetchandan via jaydeepvishwakarma)
OOZIE-2520 SortBy filter for ordering the jobs query results (abhishekbafna via jaydeepvishwakarma)
OOZIE-2506 Add logs into RecoverService for logging information about queued commands (abhishekbafna via jaydeepvishwakarma)
OOZIE-2515 Duplicate information for "Changing endtime/pausetime of a Bundle Job" in CommandLineTool wiki (abhishekbafna via jaydeepvishwakarma)
Expand Down
3 changes: 2 additions & 1 deletion webapp/src/main/webapp/oozie-console.js
Expand Up @@ -2532,7 +2532,8 @@ var timeZones_store = new Ext.data.JsonStore({
fields: ['timezoneDisplayName','timezoneId'],
proxy: new Ext.data.HttpProxy({
url: getOozieBase() + 'admin' + "/available-timezones"
})
}),
sortInfo : {field: "timezoneDisplayName", direction: "ASC"}
});
timeZones_store.proxy.conn.timeout = 300000;
timeZones_store.proxy.conn.method = "GET";
Expand Down

0 comments on commit 4669d29

Please sign in to comment.