[jira] [Commented] (AIRFLOW-6079) Make consistent use of timezone.parse

2019-11-26 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/AIRFLOW-6079?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16982992#comment-16982992
 ] 

ASF GitHub Bot commented on AIRFLOW-6079:
-

kaxil commented on pull request #6672: [AIRFLOW-6079] Make consistent use of 
timezone.parse
URL: https://github.com/apache/airflow/pull/6672
 
 
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Make consistent use of timezone.parse
> -
>
> Key: AIRFLOW-6079
> URL: https://issues.apache.org/jira/browse/AIRFLOW-6079
> Project: Apache Airflow
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 2.0.0
>Reporter: Kaxil Naik
>Assignee: Kaxil Naik
>Priority: Minor
> Fix For: 2.0.0
>
>
> In www/view.py, the following variations are used to parse time:
> * pendulum.parse
> * airflow.utils.timezone.parse
> * timezone.parse



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AIRFLOW-6079) Make consistent use of timezone.parse

2019-11-26 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AIRFLOW-6079?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16982993#comment-16982993
 ] 

ASF subversion and git services commented on AIRFLOW-6079:
--

Commit 3f3b42883939fa9bbdda57b9c96efbaa76923609 in airflow's branch 
refs/heads/master from Kaxil Naik
[ https://gitbox.apache.org/repos/asf?p=airflow.git;h=3f3b428 ]

[AIRFLOW-6079] Make consistent use of timezone.parse (#6672)



> Make consistent use of timezone.parse
> -
>
> Key: AIRFLOW-6079
> URL: https://issues.apache.org/jira/browse/AIRFLOW-6079
> Project: Apache Airflow
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 2.0.0
>Reporter: Kaxil Naik
>Assignee: Kaxil Naik
>Priority: Minor
> Fix For: 2.0.0
>
>
> In www/view.py, the following variations are used to parse time:
> * pendulum.parse
> * airflow.utils.timezone.parse
> * timezone.parse



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AIRFLOW-6079) Make consistent use of timezone.parse

2019-11-26 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/AIRFLOW-6079?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16982850#comment-16982850
 ] 

ASF GitHub Bot commented on AIRFLOW-6079:
-

kaxil commented on pull request #6672: [AIRFLOW-6079] Make consistent use of 
timezone.parse
URL: https://github.com/apache/airflow/pull/6672
 
 
   Make sure you have checked _all_ steps below.
   
   ### Jira
   
   - [x] My PR addresses the following [Airflow 
Jira](https://issues.apache.org/jira/browse/AIRFLOW/) issues and references 
them in the PR title. For example, "\[AIRFLOW-XXX\] My Airflow PR"
 - https://issues.apache.org/jira/browse/AIRFLOW-6079
   
   
   ### Description
   
   - [x] Here are some details about my PR, including screenshots of any UI 
changes:
   In `www/view.py`, the following variations are used to parse time:
   
   - pendulum.parse
   - airflow.utils.timezone.parse
   - timezone.parse
   
   ### Tests
   
   - [x] My PR adds the following unit tests __OR__ does not need testing for 
this extremely good reason:
   
   ### Commits
   
   - [x] My commits all reference Jira issues in their subject lines, and I 
have squashed multiple commits if they address the same issue. In addition, my 
commits follow the guidelines from "[How to write a good git commit 
message](http://chris.beams.io/posts/git-commit/)":
 1. Subject is separated from body by a blank line
 1. Subject is limited to 50 characters (not including Jira issue reference)
 1. Subject does not end with a period
 1. Subject uses the imperative mood ("add", not "adding")
 1. Body wraps at 72 characters
 1. Body explains "what" and "why", not "how"
   
   ### Documentation
   
   - [x] In case of new functionality, my PR adds documentation that describes 
how to use it.
 - All the public functions and the classes in the PR contain docstrings 
that explain what it does
 - If you implement backwards incompatible changes, please leave a note in 
the [Updating.md](https://github.com/apache/airflow/blob/master/UPDATING.md) so 
we can assign it to a appropriate release
   
 

This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Make consistent use of timezone.parse
> -
>
> Key: AIRFLOW-6079
> URL: https://issues.apache.org/jira/browse/AIRFLOW-6079
> Project: Apache Airflow
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 2.0.0
>Reporter: Kaxil Naik
>Assignee: Kaxil Naik
>Priority: Minor
> Fix For: 2.0.0
>
>
> In www/view.py, the following variations are used to parse time:
> * pendulum.parse
> * airflow.utils.timezone.parse
> * timezone.parse



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AIRFLOW-6079) Make consistent use of timezone.parse

2019-11-26 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/AIRFLOW-6079?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16982848#comment-16982848
 ] 

ASF subversion and git services commented on AIRFLOW-6079:
--

Commit f01bd4b99cf7747f1d2f875ae4caa99b48e0b970 in airflow's branch 
refs/heads/AIRFLOW-6079 from Kaxil Naik
[ https://gitbox.apache.org/repos/asf?p=airflow.git;h=f01bd4b ]

[AIRFLOW-6079] Make consistent use of timezone.parse


> Make consistent use of timezone.parse
> -
>
> Key: AIRFLOW-6079
> URL: https://issues.apache.org/jira/browse/AIRFLOW-6079
> Project: Apache Airflow
>  Issue Type: Improvement
>  Components: core
>Affects Versions: 2.0.0
>Reporter: Kaxil Naik
>Assignee: Kaxil Naik
>Priority: Minor
> Fix For: 2.0.0
>
>
> In www/view.py, the following variations are used to parse time:
> * pendulum.parse
> * airflow.utils.timezone.parse
> * timezone.parse



--
This message was sent by Atlassian Jira
(v8.3.4#803005)