Skip to content

Commit

Permalink
meh
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel May committed Oct 25, 2021
1 parent d751753 commit f4268e4
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions core/dbt/events/events.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@


class Singleton:
__instance = None
@staticmethod
def getInstance():
""" Static access method. """
if Singleton.__instance == None:
Singleton()
return Singleton.__instance
def __init__(self):
""" Virtually private constructor. """
if Singleton.__instance != None:
raise Exception("This class is a singleton!")
else:
Singleton.__instance = self


# All classes that inherit from this one should be defined in this file.
class BaseEvent():
pass


class StartParse(BaseEvent):
pass

1 change: 1 addition & 0 deletions core/dbt/task/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def compile_manifest(self):
self.graph = compiler.compile(self.manifest)

def run(self):
events.register(Progress(ParseStart))
print_timestamped_line('Start parsing.')
self.get_full_manifest()
if self.args.compile:
Expand Down

0 comments on commit f4268e4

Please sign in to comment.