diff options
Diffstat (limited to 'service/test/support/dispatcher')
-rw-r--r-- | service/test/support/dispatcher/__init__.py | 2 | ||||
-rw-r--r-- | service/test/support/dispatcher/proxy.py | 16 | ||||
-rw-r--r-- | service/test/support/dispatcher/run.py | 18 |
3 files changed, 33 insertions, 3 deletions
diff --git a/service/test/support/dispatcher/__init__.py b/service/test/support/dispatcher/__init__.py index 3407b019..707e2265 100644 --- a/service/test/support/dispatcher/__init__.py +++ b/service/test/support/dispatcher/__init__.py @@ -13,5 +13,3 @@ # # You should have received a copy of the GNU Affero General Public License # along with Pixelated. If not, see <http://www.gnu.org/licenses/>. - - diff --git a/service/test/support/dispatcher/proxy.py b/service/test/support/dispatcher/proxy.py index 31645848..d4cb95ee 100644 --- a/service/test/support/dispatcher/proxy.py +++ b/service/test/support/dispatcher/proxy.py @@ -1,3 +1,19 @@ +# +# Copyright (c) 2014 ThoughtWorks Deutschland GmbH +# +# Pixelated is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Pixelated is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Pixelated. If not, see <http://www.gnu.org/licenses/>. + from __future__ import print_function import multiprocessing import traceback diff --git a/service/test/support/dispatcher/run.py b/service/test/support/dispatcher/run.py index 98627ba7..d436da05 100644 --- a/service/test/support/dispatcher/run.py +++ b/service/test/support/dispatcher/run.py @@ -1,3 +1,19 @@ +# +# Copyright (c) 2014 ThoughtWorks Deutschland GmbH +# +# Pixelated is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Pixelated is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Pixelated. If not, see <http://www.gnu.org/licenses/>. + from test.support.dispatcher.proxy import Proxy if __name__ in ('main', '__main__'): @@ -5,4 +21,4 @@ if __name__ in ('main', '__main__'): try: proxy.serve_forever() except Exception, e: - proxy.shutdown()
\ No newline at end of file + proxy.shutdown() |